Mercurial > hg > xemacs-beta
comparison src/bytecode.c @ 414:da8ed4261e83 r21-2-15
Import from CVS: tag r21-2-15
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:21:38 +0200 |
parents | 697ef44129c6 |
children | 41dbb7a9d5f2 |
comparison
equal
deleted
inserted
replaced
413:901169e5ca31 | 414:da8ed4261e83 |
---|---|
224 int stack_depth, | 224 int stack_depth, |
225 Lisp_Object *constants_data); | 225 Lisp_Object *constants_data); |
226 | 226 |
227 extern Lisp_Object Qand_rest, Qand_optional; | 227 extern Lisp_Object Qand_rest, Qand_optional; |
228 | 228 |
229 /* Define ERROR_CHECK_BYTE_CODE to enable some minor sanity checking. | |
230 Useful for debugging the byte compiler. */ | |
231 #ifdef DEBUG_XEMACS | |
232 #define ERROR_CHECK_BYTE_CODE | |
233 #endif | |
234 | |
235 /* Define BYTE_CODE_METER to enable generation of a byte-op usage histogram. | 229 /* Define BYTE_CODE_METER to enable generation of a byte-op usage histogram. |
236 This isn't defined in FSF Emacs and isn't defined in XEmacs v19. */ | 230 This isn't defined in FSF Emacs and isn't defined in XEmacs v19. */ |
237 /* #define BYTE_CODE_METER */ | 231 /* #define BYTE_CODE_METER */ |
238 | 232 |
239 | 233 |