summaryrefslogtreecommitdiff
path: root/src/casetab.c
diff options
context:
space:
mode:
authorDmitry Antipov <dmantipov@yandex.ru>2013-08-26 09:20:59 +0400
committerDmitry Antipov <dmantipov@yandex.ru>2013-08-26 09:20:59 +0400
commitc76826d98c8f890d8877c9ed5e7738d3268a70af (patch)
tree4b043f09662c2f8f30bc5ff75757c2521000911c /src/casetab.c
parenteed991017a9d80651febdb5549bc75853945dfbc (diff)
downloademacs-c76826d98c8f890d8877c9ed5e7738d3268a70af.tar.gz
* syntax.c (init_syntax_once): Adjust comment and do an early
initialization of Qchar_table_extra_slots just once... * casetab.c (init_casetab_once): * category.c (init_category_once): * character.c (syms_of_character): * coding.c (syms_of_coding): * xdisp.c (syms_of_xdisp): ...and omit it here.
Diffstat (limited to 'src/casetab.c')
-rw-r--r--src/casetab.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/casetab.c b/src/casetab.c
index 5f3c8db2869..b6b1c99c39f 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -247,15 +247,8 @@ init_casetab_once (void)
{
register int i;
Lisp_Object down, up, eqv;
- DEFSYM (Qcase_table, "case-table");
-
- /* Intern this now in case it isn't already done.
- Setting this variable twice is harmless.
- But don't staticpro it here--that is done in alloc.c. */
- Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
- /* Now we are ready to set up this property, so we can
- create char tables. */
+ DEFSYM (Qcase_table, "case-table");
Fput (Qcase_table, Qchar_table_extra_slots, make_number (3));
down = Fmake_char_table (Qcase_table, Qnil);