Mercurial > hg > xemacs-beta
comparison src/lisp.h @ 149:538048ae2ab8 r20-3b1
Import from CVS: tag r20-3b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:36:16 +0200 |
parents | b980b6286996 |
children | 6b37e6ddd302 |
comparison
equal
deleted
inserted
replaced
148:f659db2a1f73 | 149:538048ae2ab8 |
---|---|
254 #define ALIGN_PTR(ptr, unit) \ | 254 #define ALIGN_PTR(ptr, unit) \ |
255 ((void *) ALIGN_SIZE ((long) (ptr), unit)) | 255 ((void *) ALIGN_SIZE ((long) (ptr), unit)) |
256 | 256 |
257 #ifdef QUANTIFY | 257 #ifdef QUANTIFY |
258 #include "quantify.h" | 258 #include "quantify.h" |
259 #define QUANTIFY_START_RECORDING \ | 259 #define QUANTIFY_START_RECORDING quantify_start_recording_data () |
260 do { quantify_start_recording_data (); } while (0) | 260 #define QUANTIFY_STOP_RECORDING quantify_stop_recording_data () |
261 #define QUANTIFY_STOP_RECORDING \ | |
262 do { quantify_stop_recording_data (); } while (0) | |
263 #else /* !QUANTIFY */ | 261 #else /* !QUANTIFY */ |
264 #define QUANTIFY_START_RECORDING | 262 #define QUANTIFY_START_RECORDING |
265 #define QUANTIFY_STOP_RECORDING | 263 #define QUANTIFY_STOP_RECORDING |
266 #endif /* !QUANTIFY */ | 264 #endif /* !QUANTIFY */ |
267 | 265 |
545 data stored in properties, selections, and the like. This is | 543 data stored in properties, selections, and the like. This is |
546 an 8-bit no-lock-shift ISO2022 coding system. */ | 544 an 8-bit no-lock-shift ISO2022 coding system. */ |
547 FORMAT_CTEXT | 545 FORMAT_CTEXT |
548 }; | 546 }; |
549 | 547 |
548 #define FORMAT_NATIVE FORMAT_FILENAME | |
549 | |
550 enum run_hooks_condition | 550 enum run_hooks_condition |
551 { | 551 { |
552 RUN_HOOKS_TO_COMPLETION, | 552 RUN_HOOKS_TO_COMPLETION, |
553 RUN_HOOKS_UNTIL_SUCCESS, | 553 RUN_HOOKS_UNTIL_SUCCESS, |
554 RUN_HOOKS_UNTIL_FAILURE | 554 RUN_HOOKS_UNTIL_FAILURE |