diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index c53c5acdbb3..88ac509e4ba 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -272,7 +272,7 @@ struct byte_stack *byte_stack_list; | |||
| 272 | /* Mark objects on byte_stack_list. Called during GC. */ | 272 | /* Mark objects on byte_stack_list. Called during GC. */ |
| 273 | 273 | ||
| 274 | void | 274 | void |
| 275 | mark_byte_stack () | 275 | mark_byte_stack (void) |
| 276 | { | 276 | { |
| 277 | struct byte_stack *stack; | 277 | struct byte_stack *stack; |
| 278 | Lisp_Object *obj; | 278 | Lisp_Object *obj; |
| @@ -301,7 +301,7 @@ mark_byte_stack () | |||
| 301 | counters. Called when GC has completed. */ | 301 | counters. Called when GC has completed. */ |
| 302 | 302 | ||
| 303 | void | 303 | void |
| 304 | unmark_byte_stack () | 304 | unmark_byte_stack (void) |
| 305 | { | 305 | { |
| 306 | struct byte_stack *stack; | 306 | struct byte_stack *stack; |
| 307 | 307 | ||
| @@ -403,8 +403,7 @@ The first argument, BYTESTR, is a string of byte code; | |||
| 403 | the second, VECTOR, a vector of constants; | 403 | the second, VECTOR, a vector of constants; |
| 404 | the third, MAXDEPTH, the maximum stack depth used in this function. | 404 | the third, MAXDEPTH, the maximum stack depth used in this function. |
| 405 | If the third argument is incorrect, Emacs may crash. */) | 405 | If the third argument is incorrect, Emacs may crash. */) |
| 406 | (bytestr, vector, maxdepth) | 406 | (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth) |
| 407 | Lisp_Object bytestr, vector, maxdepth; | ||
| 408 | { | 407 | { |
| 409 | int count = SPECPDL_INDEX (); | 408 | int count = SPECPDL_INDEX (); |
| 410 | #ifdef BYTE_CODE_METER | 409 | #ifdef BYTE_CODE_METER |
| @@ -1678,7 +1677,7 @@ If the third argument is incorrect, Emacs may crash. */) | |||
| 1678 | } | 1677 | } |
| 1679 | 1678 | ||
| 1680 | void | 1679 | void |
| 1681 | syms_of_bytecode () | 1680 | syms_of_bytecode (void) |
| 1682 | { | 1681 | { |
| 1683 | Qbytecode = intern_c_string ("byte-code"); | 1682 | Qbytecode = intern_c_string ("byte-code"); |
| 1684 | staticpro (&Qbytecode); | 1683 | staticpro (&Qbytecode); |