aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-10 20:39:45 -0700
committerPaul Eggert2011-04-10 20:39:45 -0700
commit955cbe7b1720f09b2991b7d981147d9cc79d52e3 (patch)
tree72ce39606c71e4ace0891f2127a7ef4fca32c209 /src/buffer.c
parent95c82688bc8063f0be5a04baee5ea2a18f9ddf6b (diff)
downloademacs-955cbe7b1720f09b2991b7d981147d9cc79d52e3.tar.gz
emacs-955cbe7b1720f09b2991b7d981147d9cc79d52e3.zip
Declare Lisp_Object Q* variables to be 'static' if not exproted.
This makes it easier for human readers (and static analyzers) to see whether these variables are used from other modules. * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c: * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c: * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c: * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c: * lread.c, macros.c, minibuf.c, print.c, process.c, search.c: * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c: * xmenu.c, xselect.c: Declare Q* vars static if they are not used in other modules. * ccl.h, character.h, charset.h, coding.h, composite.h, font.h: * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h: Remove decls of unexported vars. * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
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;