aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c23
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. */
114Lisp_Object Vbuffer_alist; 114Lisp_Object Vbuffer_alist;
115 115
116Lisp_Object Qkill_buffer_query_functions; 116static Lisp_Object Qkill_buffer_query_functions;
117 117
118/* Hook run before changing a major mode. */ 118/* Hook run before changing a major mode. */
119Lisp_Object Qchange_major_mode_hook; 119static Lisp_Object Qchange_major_mode_hook;
120 120
121Lisp_Object Qfirst_change_hook; 121Lisp_Object Qfirst_change_hook;
122Lisp_Object Qbefore_change_functions; 122Lisp_Object Qbefore_change_functions;
123Lisp_Object Qafter_change_functions; 123Lisp_Object Qafter_change_functions;
124Lisp_Object Qucs_set_table_for_input; 124static Lisp_Object Qucs_set_table_for_input;
125 125
126Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local; 126static Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
127Lisp_Object Qpermanent_local_hook; 127static Lisp_Object Qpermanent_local_hook;
128 128
129Lisp_Object Qprotected_field; 129static Lisp_Object Qprotected_field;
130 130
131Lisp_Object QSFundamental; /* A string "Fundamental" */ 131static Lisp_Object QSFundamental; /* A string "Fundamental" */
132 132
133Lisp_Object Qkill_buffer_hook; 133static Lisp_Object Qkill_buffer_hook;
134 134
135Lisp_Object Qget_file_buffer; 135static Lisp_Object Qget_file_buffer;
136 136
137Lisp_Object Qoverlayp; 137static Lisp_Object Qoverlayp;
138 138
139Lisp_Object Qpriority, Qevaporate, Qbefore_string, Qafter_string; 139Lisp_Object Qpriority, Qbefore_string, Qafter_string;
140static Lisp_Object Qevaporate;
140 141
141Lisp_Object Qmodification_hooks; 142Lisp_Object Qmodification_hooks;
142Lisp_Object Qinsert_in_front_hooks; 143Lisp_Object Qinsert_in_front_hooks;