diff options
| author | Erik Naggum | 1995-10-23 04:42:46 +0000 |
|---|---|---|
| committer | Erik Naggum | 1995-10-23 04:42:46 +0000 |
| commit | da19ac119eb68a88021542c68a0f99ab8cc02263 (patch) | |
| tree | 6106c2a891e588495a6732e0290a7cbe6f5d5d36 /src | |
| parent | 4b3bd052d5e5d77cb2df121e61dcf79b1c353827 (diff) | |
| download | emacs-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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) |