aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1995-10-23 04:42:46 +0000
committerErik Naggum1995-10-23 04:42:46 +0000
commitda19ac119eb68a88021542c68a0f99ab8cc02263 (patch)
tree6106c2a891e588495a6732e0290a7cbe6f5d5d36 /src
parent4b3bd052d5e5d77cb2df121e61dcf79b1c353827 (diff)
downloademacs-da19ac119eb68a88021542c68a0f99ab8cc02263.tar.gz
emacs-da19ac119eb68a88021542c68a0f99ab8cc02263.zip
(map_char_table): Set size to CHAR_TABLE_ORDINARY_SLOTS.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
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)
1336 Lisp_Object (*c_function) (), function, chartable, depth, *indices; 1336 Lisp_Object (*c_function) (), function, chartable, depth, *indices;
1337{ 1337{
1338 int i; 1338 int i;
1339 int size = XCHAR_TABLE (chartable)->size; 1339 int size = CHAR_TABLE_ORDINARY_SLOTS;
1340 1340
1341 /* Make INDICES longer if we are about to fill it up. */ 1341 /* Make INDICES longer if we are about to fill it up. */
1342 if ((depth % 10) == 9) 1342 if ((depth % 10) == 9)