diff options
author | Erik Naggum <erik@naggum.no> | 1995-10-23 04:42:46 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1995-10-23 04:42:46 +0000 |
commit | 034935e623f0ec771eba376ed3ce197adcf359bb (patch) | |
tree | fd822668e5f0638e5835c3fddc57fcfce9c139f6 /src/fns.c | |
parent | ed5779ae22ba04f9bc1c2d11ac925f46afc506c5 (diff) | |
download | emacs-034935e623f0ec771eba376ed3ce197adcf359bb.tar.gz |
(map_char_table): Set size to CHAR_TABLE_ORDINARY_SLOTS.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c index 74f256eaca4..1bcb963e20f 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1336,7 +1336,7 @@ map_char_table (c_function, function, chartable, depth, indices) Lisp_Object (*c_function) (), function, chartable, depth, *indices; { int i; - int size = XCHAR_TABLE (chartable)->size; + int size = CHAR_TABLE_ORDINARY_SLOTS; /* Make INDICES longer if we are about to fill it up. */ if ((depth % 10) == 9) |