diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-10 20:39:45 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-10 20:39:45 -0700 |
commit | 955cbe7b1720f09b2991b7d981147d9cc79d52e3 (patch) | |
tree | 72ce39606c71e4ace0891f2127a7ef4fca32c209 /src/syntax.h | |
parent | 95c82688bc8063f0be5a04baee5ea2a18f9ddf6b (diff) | |
download | emacs-955cbe7b1720f09b2991b7d981147d9cc79d52e3.tar.gz |
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/syntax.h')
-rw-r--r-- | src/syntax.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/syntax.h b/src/syntax.h index e8726bb28a4..2b052715dac 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -19,7 +19,6 @@ You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ -extern Lisp_Object Qsyntax_table_p; extern void update_syntax_table (EMACS_INT, int, int, Lisp_Object); /* The standard syntax table is stored where it will automatically @@ -300,4 +299,3 @@ struct gl_state_s extern struct gl_state_s gl_state; extern EMACS_INT scan_words (EMACS_INT, EMACS_INT); - |