From e2018b741394728255e7658925937179b04e2828 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 21 Feb 1996 21:12:21 +0000 Subject: [PATCH] (map_char_table): Fix args in recursive call. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2