aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorK. Handa2015-01-07 22:51:41 +0900
committerK. Handa2015-01-07 22:51:41 +0900
commit88bc8332eb14bcc4780fd3fe3dd4de2205c31dbf (patch)
tree18da116400703b67738bdbbd38cc4abf4c1e929f /src/syntax.c
parent3f79d3131629f73da16ec121d2a0056f11b70e65 (diff)
parent95295df44cc2b6e0e2442aeff96b0fe2ceac405c (diff)
downloademacs-88bc8332eb14bcc4780fd3fe3dd4de2205c31dbf.tar.gz
emacs-88bc8332eb14bcc4780fd3fe3dd4de2205c31dbf.zip
Merge branch master of git.sv.gnu.org:/srv/git/emacs.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/syntax.c b/src/syntax.c
index dc84ca69fb7..2f821564294 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1,5 +1,5 @@
1/* GNU Emacs routines to deal with syntax tables; also word and list parsing. 1/* GNU Emacs routines to deal with syntax tables; also word and list parsing.
2 Copyright (C) 1985, 1987, 1993-1995, 1997-1999, 2001-2014 Free 2 Copyright (C) 1985, 1987, 1993-1995, 1997-1999, 2001-2015 Free
3 Software Foundation, Inc. 3 Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -137,9 +137,6 @@ enum
137 ST_STRING_STYLE = 256 + 2 137 ST_STRING_STYLE = 256 + 2
138 }; 138 };
139 139
140static Lisp_Object Qsyntax_table_p;
141static Lisp_Object Qsyntax_table, Qscan_error;
142
143/* This is the internal form of the parse state used in parse-partial-sexp. */ 140/* This is the internal form of the parse state used in parse-partial-sexp. */
144 141
145struct lisp_parse_state 142struct lisp_parse_state
@@ -3500,11 +3497,6 @@ init_syntax_once (void)
3500 /* This has to be done here, before we call Fmake_char_table. */ 3497 /* This has to be done here, before we call Fmake_char_table. */
3501 DEFSYM (Qsyntax_table, "syntax-table"); 3498 DEFSYM (Qsyntax_table, "syntax-table");
3502 3499
3503 /* This variable is DEFSYMed in alloc.c and not initialized yet, so
3504 intern it here. NOTE: you must guarantee that init_syntax_once
3505 is called before all other users of this variable. */
3506 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
3507
3508 /* Create objects which can be shared among syntax tables. */ 3500 /* Create objects which can be shared among syntax tables. */
3509 Vsyntax_code_object = make_uninit_vector (Smax); 3501 Vsyntax_code_object = make_uninit_vector (Smax);
3510 for (i = 0; i < Smax; i++) 3502 for (i = 0; i < Smax; i++)