diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-12 22:49:31 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-12 22:49:31 +0000 |
commit | c2fd1f35e930943a944b96aa542d583c89fcdc3c (patch) | |
tree | 88daada638273b38dafb417b57c62770925d72da | |
parent | e6c87a0f96e14c199327b8f99d1909b870ef53ed (diff) | |
download | emacs-c2fd1f35e930943a944b96aa542d583c89fcdc3c.tar.gz |
(Fmap_char_table): Don't use map_char_table's function arg.
-rw-r--r-- | src/fns.c | 2 |
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'. */) CHECK_CHAR_TABLE (char_table); - map_char_table (NULL, function, char_table, char_table, 0, indices); + map_char_table (call2, Qnil, char_table, function, 0, indices); return Qnil; } |