diff options
| author | Tom Tromey | 2012-08-15 12:56:38 -0600 |
|---|---|---|
| committer | Tom Tromey | 2012-08-15 12:56:38 -0600 |
| commit | 68b32482437e05f0994c4dd0ab5b0c27d39f0f6d (patch) | |
| tree | fe01584b00d03559210438ebc608a1d170ee00b3 /src/bytecode.c | |
| parent | 5190da91e6ca41287190693a8999a6919a9cd8e6 (diff) | |
| download | emacs-68b32482437e05f0994c4dd0ab5b0c27d39f0f6d.tar.gz emacs-68b32482437e05f0994c4dd0ab5b0c27d39f0f6d.zip | |
This introduces a thread-state object and moves various C globals
there. It also introduces #defines for these globals to avoid a
monster patch.
The #defines mean that this patch also has to rename a few fields
whose names clash with the defines.
There is currently just a single "thread"; so this patch does not
impact Emacs behavior in any significant way.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 5ac8b4fa2bd..019459491e9 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -328,7 +328,7 @@ struct byte_stack | |||
| 328 | done. Signaling an error truncates the list analogous to | 328 | done. Signaling an error truncates the list analogous to |
| 329 | gcprolist. */ | 329 | gcprolist. */ |
| 330 | 330 | ||
| 331 | struct byte_stack *byte_stack_list; | 331 | /* struct byte_stack *byte_stack_list; */ |
| 332 | 332 | ||
| 333 | 333 | ||
| 334 | /* Mark objects on byte_stack_list. Called during GC. */ | 334 | /* Mark objects on byte_stack_list. Called during GC. */ |