From da19ac119eb68a88021542c68a0f99ab8cc02263 Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Mon, 23 Oct 1995 04:42:46 +0000 Subject: [PATCH] (map_char_table): Set size to CHAR_TABLE_ORDINARY_SLOTS. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2