diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/buffer.c b/src/buffer.c index a88afbb36e6..82913ac20e7 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -113,30 +113,31 @@ static void reset_buffer_local_variables (struct buffer *b, int permanent_too); | |||
| 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; |
| 115 | 115 | ||
| 116 | Lisp_Object Qkill_buffer_query_functions; | 116 | static Lisp_Object Qkill_buffer_query_functions; |
| 117 | 117 | ||
| 118 | /* Hook run before changing a major mode. */ | 118 | /* Hook run before changing a major mode. */ |
| 119 | Lisp_Object Qchange_major_mode_hook; | 119 | static Lisp_Object Qchange_major_mode_hook; |
| 120 | 120 | ||
| 121 | Lisp_Object Qfirst_change_hook; | 121 | Lisp_Object Qfirst_change_hook; |
| 122 | Lisp_Object Qbefore_change_functions; | 122 | Lisp_Object Qbefore_change_functions; |
| 123 | Lisp_Object Qafter_change_functions; | 123 | Lisp_Object Qafter_change_functions; |
| 124 | Lisp_Object Qucs_set_table_for_input; | 124 | static Lisp_Object Qucs_set_table_for_input; |
| 125 | 125 | ||
| 126 | Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local; | 126 | static Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local; |
| 127 | Lisp_Object Qpermanent_local_hook; | 127 | static Lisp_Object Qpermanent_local_hook; |
| 128 | 128 | ||
| 129 | Lisp_Object Qprotected_field; | 129 | static Lisp_Object Qprotected_field; |
| 130 | 130 | ||
| 131 | Lisp_Object QSFundamental; /* A string "Fundamental" */ | 131 | static Lisp_Object QSFundamental; /* A string "Fundamental" */ |
| 132 | 132 | ||
| 133 | Lisp_Object Qkill_buffer_hook; | 133 | static Lisp_Object Qkill_buffer_hook; |
| 134 | 134 | ||
| 135 | Lisp_Object Qget_file_buffer; | 135 | static Lisp_Object Qget_file_buffer; |
| 136 | 136 | ||
| 137 | Lisp_Object Qoverlayp; | 137 | static Lisp_Object Qoverlayp; |
| 138 | 138 | ||
| 139 | Lisp_Object Qpriority, Qevaporate, Qbefore_string, Qafter_string; | 139 | Lisp_Object Qpriority, Qbefore_string, Qafter_string; |
| 140 | static Lisp_Object Qevaporate; | ||
| 140 | 141 | ||
| 141 | Lisp_Object Qmodification_hooks; | 142 | Lisp_Object Qmodification_hooks; |
| 142 | Lisp_Object Qinsert_in_front_hooks; | 143 | Lisp_Object Qinsert_in_front_hooks; |