1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

(map_char_table): Fix args in recursive call.

This commit is contained in:
Karl Heuer 1996-02-21 21:12:21 +00:00
parent 31f3d83121
commit e2018b7413

View File

@ -1351,7 +1351,7 @@ map_char_table (c_function, function, chartable, depth, indices)
indices[depth] = i;
elt = XCHAR_TABLE (chartable)->contents[i];
if (CHAR_TABLE_P (elt))
map_char_table (chartable, c_function, function, depth + 1, indices);
map_char_table (c_function, function, chartable, depth + 1, indices);
else if (c_function)
(*c_function) (depth + 1, indices, elt);
/* Here we should handle all cases where the range is a single character