diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-04-14 21:32:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-04-14 21:32:49 +0000 |
commit | 3afbbbfe9bd40860a751e483b3b6949568df62f0 (patch) | |
tree | 7cdf000f8e64e2378433c8dc77c89ab9d51623c6 /src | |
parent | 29532d6ca31ed2e685c0db68697e03d9778fb572 (diff) | |
download | emacs-3afbbbfe9bd40860a751e483b3b6949568df62f0.tar.gz |
(Fmodify_category_entry): Delete second arg in call to make_sub_char_table.
Diffstat (limited to 'src')
-rw-r--r-- | src/category.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c index b644448b486..1041e185877 100644 --- a/src/category.c +++ b/src/category.c @@ -427,7 +427,7 @@ If optional forth argument RESET is non NIL,\n\ /* The third (bottom) level table. */ if (!SUB_CHAR_TABLE_P (val)) { - val = make_sub_char_table (Qnil, Qnil); + val = make_sub_char_table (Qnil); XCHAR_TABLE (table)->contents[c1] = val; /* We must set default category set of CHARSET and C1 in `defalt' slot. */ |