aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2002-11-12 22:49:31 +0000
committerStefan Monnier2002-11-12 22:49:31 +0000
commitc2fd1f35e930943a944b96aa542d583c89fcdc3c (patch)
tree88daada638273b38dafb417b57c62770925d72da /src
parente6c87a0f96e14c199327b8f99d1909b870ef53ed (diff)
downloademacs-c2fd1f35e930943a944b96aa542d583c89fcdc3c.tar.gz
emacs-c2fd1f35e930943a944b96aa542d583c89fcdc3c.zip
(Fmap_char_table): Don't use map_char_table's function arg.
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 17b07a0a349..e55e5fbc24c 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2659,7 +2659,7 @@ The key is always a possible IDX argument to `aref'. */)
2659 2659
2660 CHECK_CHAR_TABLE (char_table); 2660 CHECK_CHAR_TABLE (char_table);
2661 2661
2662 map_char_table (NULL, function, char_table, char_table, 0, indices); 2662 map_char_table (call2, Qnil, char_table, function, 0, indices);
2663 return Qnil; 2663 return Qnil;
2664} 2664}
2665 2665