1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(Fmap_char_table): Cast `call2'.

This commit is contained in:
Dave Love 2002-11-14 23:20:30 +00:00
parent f954e891f8
commit 49f8f50ab1
2 changed files with 3 additions and 2 deletions

View file

@ -22,6 +22,7 @@
* emacs.c (main) [!VMS]: Avoid third arg.
* fns.c (Fcopy_sequence): Doc fix.
(Fmap_char_table): Cast `call2'.
2002-11-14 Francesco Potorti` <pot@gnu.org>

View file

@ -1,5 +1,5 @@
/* Random utility Lisp functions.
Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000, 2001
Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -2659,7 +2659,7 @@ The key is always a possible IDX argument to `aref'. */)
CHECK_CHAR_TABLE (char_table);
map_char_table (call2, Qnil, char_table, function, 0, indices);
map_char_table ((void *) call2, Qnil, char_table, function, 0, indices);
return Qnil;
}