changeset 14617:4401bc9498c6

(map_char_table): Fix args in recursive call.
author Karl Heuer <kwzh@gnu.org>
date Wed, 21 Feb 1996 21:12:21 +0000
parents 051d6225ca90
children ba41bb731294
files src/fns.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fns.c	Wed Feb 21 21:11:24 1996 +0000
+++ b/src/fns.c	Wed Feb 21 21:12:21 1996 +0000
@@ -1351,7 +1351,7 @@
       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