From: Stefan Monnier Date: Tue, 12 Nov 2002 22:49:31 +0000 (+0000) Subject: (Fmap_char_table): Don't use map_char_table's function arg. X-Git-Tag: ttn-vms-21-2-B4~12498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c2fd1f35e930943a944b96aa542d583c89fcdc3c;p=emacs.git (Fmap_char_table): Don't use map_char_table's function arg. --- 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; }