diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-17 09:48:22 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-17 09:48:22 -0700 |
commit | 742af32f280f9e0051691a34874d6a7de693239c (patch) | |
tree | 6fe111e6e6d8b14af62caecc3a8ef5a18f01a8aa /src/casetab.c | |
parent | a04e2c62ec8ce903310b7c7635c43f42ccab5e2f (diff) | |
download | emacs-742af32f280f9e0051691a34874d6a7de693239c.tar.gz |
* lisp.h (CSET): Remove.
(set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
(set_char_table_purpose): New functions,
replacing CSET. All uses changed. For example, replace
"CSET (XCHAR_TABLE (char_table), parent, parent);" with
"char_table_set_parent (char_table, parent);".
The old version was confusing because it used the same name
'parent' for two different things.
Fixes: debbugs:12215
Diffstat (limited to 'src/casetab.c')
-rw-r--r-- | src/casetab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/casetab.c b/src/casetab.c index 6097299047a..78c6034bf5f 100644 --- a/src/casetab.c +++ b/src/casetab.c @@ -260,7 +260,7 @@ init_casetab_once (void) down = Fmake_char_table (Qcase_table, Qnil); Vascii_downcase_table = down; - CSET (XCHAR_TABLE (down), purpose, Qcase_table); + set_char_table_purpose (down, Qcase_table); for (i = 0; i < 128; i++) { |