aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1996-02-21 21:12:21 +0000
committerKarl Heuer1996-02-21 21:12:21 +0000
commite2018b741394728255e7658925937179b04e2828 (patch)
treeaec316b995cbfa7b868184d08fbe07c1b9d438a2 /src
parent31f3d83121d8e74472de3a770eabf36b2eae41c7 (diff)
downloademacs-e2018b741394728255e7658925937179b04e2828.tar.gz
emacs-e2018b741394728255e7658925937179b04e2828.zip
(map_char_table): Fix args in recursive call.
Diffstat (limited to 'src')
-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)
1351 indices[depth] = i; 1351 indices[depth] = i;
1352 elt = XCHAR_TABLE (chartable)->contents[i]; 1352 elt = XCHAR_TABLE (chartable)->contents[i];
1353 if (CHAR_TABLE_P (elt)) 1353 if (CHAR_TABLE_P (elt))
1354 map_char_table (chartable, c_function, function, depth + 1, indices); 1354 map_char_table (c_function, function, chartable, depth + 1, indices);
1355 else if (c_function) 1355 else if (c_function)
1356 (*c_function) (depth + 1, indices, elt); 1356 (*c_function) (depth + 1, indices, elt);
1357 /* Here we should handle all cases where the range is a single character 1357 /* Here we should handle all cases where the range is a single character