diff options
author | Tom Tromey <tromey@redhat.com> | 2012-08-15 12:56:38 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-08-15 12:56:38 -0600 |
commit | 68b32482437e05f0994c4dd0ab5b0c27d39f0f6d (patch) | |
tree | fe01584b00d03559210438ebc608a1d170ee00b3 /src/buffer.h | |
parent | 5190da91e6ca41287190693a8999a6919a9cd8e6 (diff) | |
download | emacs-68b32482437e05f0994c4dd0ab5b0c27d39f0f6d.tar.gz emacs-68b32482437e05f0994c4dd0ab5b0c27d39f0f6d.tar.bz2 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/buffer.h')
-rw-r--r-- | src/buffer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h index 7a6bddee5ec..1c9f5d972a9 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -872,10 +872,6 @@ extern struct buffer *all_buffers; #define FOR_EACH_BUFFER(b) \ for ((b) = all_buffers; (b); (b) = (b)->header.next.buffer) -/* This points to the current buffer. */ - -extern struct buffer *current_buffer; - /* This structure holds the default values of the buffer-local variables that have special slots in each buffer. The default value occupies the same slot in this structure |