diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c index 187277d663b..3af45122a0d 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -44,7 +44,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 44 | #include "keymap.h" | 44 | #include "keymap.h" |
| 45 | #include "frame.h" | 45 | #include "frame.h" |
| 46 | 46 | ||
| 47 | struct buffer *current_buffer; /* the current buffer */ | 47 | struct buffer *current_buffer; /* The current buffer. */ |
| 48 | 48 | ||
| 49 | /* First buffer in chain of all buffers (in reverse order of creation). | 49 | /* First buffer in chain of all buffers (in reverse order of creation). |
| 50 | Threaded through ->header.next.buffer. */ | 50 | Threaded through ->header.next.buffer. */ |
| @@ -74,12 +74,12 @@ struct buffer alignas (GCALIGNMENT) buffer_defaults; | |||
| 74 | and the corresponding slot in buffer_defaults is not used. | 74 | and the corresponding slot in buffer_defaults is not used. |
| 75 | 75 | ||
| 76 | If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is | 76 | If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is |
| 77 | zero, that is a bug */ | 77 | zero, that is a bug. */ |
| 78 | 78 | ||
| 79 | struct buffer buffer_local_flags; | 79 | struct buffer buffer_local_flags; |
| 80 | 80 | ||
| 81 | /* This structure holds the names of symbols whose values may be | 81 | /* This structure holds the names of symbols whose values may be |
| 82 | buffer-local. It is indexed and accessed in the same way as the above. */ | 82 | buffer-local. It is indexed and accessed in the same way as the above. */ |
| 83 | 83 | ||
| 84 | struct buffer alignas (GCALIGNMENT) buffer_local_symbols; | 84 | struct buffer alignas (GCALIGNMENT) buffer_local_symbols; |
| 85 | 85 | ||
| @@ -108,7 +108,7 @@ static void call_overlay_mod_hooks (Lisp_Object list, Lisp_Object overlay, | |||
| 108 | static void swap_out_buffer_local_variables (struct buffer *b); | 108 | static void swap_out_buffer_local_variables (struct buffer *b); |
| 109 | static void reset_buffer_local_variables (struct buffer *, bool); | 109 | static void reset_buffer_local_variables (struct buffer *, bool); |
| 110 | 110 | ||
| 111 | /* Alist of all buffer names vs the buffers. */ | 111 | /* Alist of all buffer names vs the buffers. */ |
| 112 | /* This used to be a variable, but is no longer, | 112 | /* This used to be a variable, but is no longer, |
| 113 | to prevent lossage due to user rplac'ing this alist or its elements. */ | 113 | to prevent lossage due to user rplac'ing this alist or its elements. */ |
| 114 | Lisp_Object Vbuffer_alist; | 114 | Lisp_Object Vbuffer_alist; |
| @@ -127,7 +127,7 @@ static Lisp_Object Qpermanent_local_hook; | |||
| 127 | 127 | ||
| 128 | static Lisp_Object Qprotected_field; | 128 | static Lisp_Object Qprotected_field; |
| 129 | 129 | ||
| 130 | static Lisp_Object QSFundamental; /* A string "Fundamental" */ | 130 | static Lisp_Object QSFundamental; /* A string "Fundamental". */ |
| 131 | 131 | ||
| 132 | static Lisp_Object Qkill_buffer_hook; | 132 | static Lisp_Object Qkill_buffer_hook; |
| 133 | static Lisp_Object Qbuffer_list_update_hook; | 133 | static Lisp_Object Qbuffer_list_update_hook; |