diff options
| author | Kenichi Handa | 2010-07-08 17:09:35 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-07-08 17:09:35 +0900 |
| commit | 80d4189187791916590b6c2b20b54588d432bb75 (patch) | |
| tree | e59e52ee4a456f3235bff0e7fba4362681dba7dd /src/bytecode.c | |
| parent | a7840ffb291e13c2a2386ccbd58089e1d7461c16 (diff) | |
| parent | 0216627eb39f77958e30f4750f581714fdfd7faf (diff) | |
| download | emacs-80d4189187791916590b6c2b20b54588d432bb75.tar.gz emacs-80d4189187791916590b6c2b20b54588d432bb75.zip | |
merge trunk
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index c53c5acdbb3..679fc60a1a7 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 | ||
| @@ -1678,7 +1678,7 @@ If the third argument is incorrect, Emacs may crash. */) | |||
| 1678 | } | 1678 | } |
| 1679 | 1679 | ||
| 1680 | void | 1680 | void |
| 1681 | syms_of_bytecode () | 1681 | syms_of_bytecode (void) |
| 1682 | { | 1682 | { |
| 1683 | Qbytecode = intern_c_string ("byte-code"); | 1683 | Qbytecode = intern_c_string ("byte-code"); |
| 1684 | staticpro (&Qbytecode); | 1684 | staticpro (&Qbytecode); |