diff options
| author | Dave Love | 2002-11-14 23:20:30 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-14 23:20:30 +0000 |
| commit | 49f8f50ab12131b2e209df1c316c8a4e74b73a16 (patch) | |
| tree | ebb47fe39df07ebc176dae5d1af0caaebd889a2f /src | |
| parent | f954e891f8fddc2128a267ad57071e4636c4cddb (diff) | |
| download | emacs-49f8f50ab12131b2e209df1c316c8a4e74b73a16.tar.gz emacs-49f8f50ab12131b2e209df1c316c8a4e74b73a16.zip | |
(Fmap_char_table): Cast `call2'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/fns.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e2da6fbb52f..f6aa35c5657 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | * emacs.c (main) [!VMS]: Avoid third arg. | 22 | * emacs.c (main) [!VMS]: Avoid third arg. |
| 23 | 23 | ||
| 24 | * fns.c (Fcopy_sequence): Doc fix. | 24 | * fns.c (Fcopy_sequence): Doc fix. |
| 25 | (Fmap_char_table): Cast `call2'. | ||
| 25 | 26 | ||
| 26 | 2002-11-14 Francesco Potorti` <pot@gnu.org> | 27 | 2002-11-14 Francesco Potorti` <pot@gnu.org> |
| 27 | 28 | ||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Random utility Lisp functions. | 1 | /* Random utility Lisp functions. |
| 2 | Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000, 2001 | 2 | Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000, 2001, 2002 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -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 (call2, Qnil, char_table, function, 0, indices); | 2662 | map_char_table ((void *) call2, Qnil, char_table, function, 0, indices); |
| 2663 | return Qnil; | 2663 | return Qnil; |
| 2664 | } | 2664 | } |
| 2665 | 2665 | ||