summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-02-21 21:12:21 +0000
committerKarl Heuer <kwzh@gnu.org>1996-02-21 21:12:21 +0000
commitbc27c386108dbe333c55e85e599a132454bf5453 (patch)
tree5d98f8414d2255648cf8934c966f44df43977416 /src/fns.c
parent0e067d86ef8c2c53e40145c11903eb15bc22f6d4 (diff)
downloademacs-bc27c386108dbe333c55e85e599a132454bf5453.tar.gz
(map_char_table): Fix args in recursive call.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
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