diff options
author | Dave Love <fx@gnu.org> | 2002-11-14 23:20:30 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-11-14 23:20:30 +0000 |
commit | 49f8f50ab12131b2e209df1c316c8a4e74b73a16 (patch) | |
tree | ebb47fe39df07ebc176dae5d1af0caaebd889a2f /src/fns.c | |
parent | f954e891f8fddc2128a267ad57071e4636c4cddb (diff) | |
download | emacs-49f8f50ab12131b2e209df1c316c8a4e74b73a16.tar.gz |
(Fmap_char_table): Cast `call2'.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c index d693aade503..c33df74b464 100644 --- a/src/fns.c +++ b/src/fns.c @@ -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; } |