aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1996-09-17 16:18:00 +0000
committerErik Naggum1996-09-17 16:18:00 +0000
commit8f84b1a1be7c933e56b69cf3382e389ff13f1bfa (patch)
tree9750fd293dae5731e61ea7985a2ea8ea3b07c741 /src
parent47d5b31e264bcd70291199f06a0db4030e52712b (diff)
downloademacs-8f84b1a1be7c933e56b69cf3382e389ff13f1bfa.tar.gz
emacs-8f84b1a1be7c933e56b69cf3382e389ff13f1bfa.zip
(syms_of_casetab): staticpro Vascii_canontable, Vascii_eqv_table, and
Vascii_upcase_table.
Diffstat (limited to 'src')
-rw-r--r--src/casetab.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/casetab.c b/src/casetab.c
index f0612fe1b54..3a008da5f40 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -239,7 +239,10 @@ syms_of_casetab ()
239 Qcase_table_p = intern ("case-table-p"); 239 Qcase_table_p = intern ("case-table-p");
240 staticpro (&Qcase_table_p); 240 staticpro (&Qcase_table_p);
241 241
242 staticpro (&Vascii_canon_table);
242 staticpro (&Vascii_downcase_table); 243 staticpro (&Vascii_downcase_table);
244 staticpro (&Vascii_eqv_table);
245 staticpro (&Vascii_upcase_table);
243 246
244 defsubr (&Scase_table_p); 247 defsubr (&Scase_table_p);
245 defsubr (&Scurrent_case_table); 248 defsubr (&Scurrent_case_table);