# HG changeset patch # User Karl Heuer # Date 824937141 0 # Node ID 4401bc9498c68283d26a0672dd9d19d3f214cd31 # Parent 051d6225ca901d9011887a4ee13f8b843b5a174f (map_char_table): Fix args in recursive call. diff -r 051d6225ca90 -r 4401bc9498c6 src/fns.c --- 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