diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/syntax.c b/src/syntax.c index a7ca6ec9748..2f821564294 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -137,9 +137,6 @@ enum | |||
| 137 | ST_STRING_STYLE = 256 + 2 | 137 | ST_STRING_STYLE = 256 + 2 |
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | static Lisp_Object Qsyntax_table_p; | ||
| 141 | static 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 | ||
| 145 | struct lisp_parse_state | 142 | struct 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++) |