diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-02-21 21:12:21 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-02-21 21:12:21 +0000 |
commit | bc27c386108dbe333c55e85e599a132454bf5453 (patch) | |
tree | 5d98f8414d2255648cf8934c966f44df43977416 /src/fns.c | |
parent | 0e067d86ef8c2c53e40145c11903eb15bc22f6d4 (diff) | |
download | emacs-bc27c386108dbe333c55e85e599a132454bf5453.tar.gz |
(map_char_table): Fix args in recursive call.
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 defd2232bc5..1a601d7d5a5 100644 --- a/src/fns.c +++ b/src/fns.c @@ -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 |