diff options
| author | Stefan Monnier | 2002-11-12 22:49:31 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-11-12 22:49:31 +0000 |
| commit | c2fd1f35e930943a944b96aa542d583c89fcdc3c (patch) | |
| tree | 88daada638273b38dafb417b57c62770925d72da /src | |
| parent | e6c87a0f96e14c199327b8f99d1909b870ef53ed (diff) | |
| download | emacs-c2fd1f35e930943a944b96aa542d583c89fcdc3c.tar.gz emacs-c2fd1f35e930943a944b96aa542d583c89fcdc3c.zip | |
(Fmap_char_table): Don't use map_char_table's function arg.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 (NULL, function, char_table, char_table, 0, indices); | 2662 | map_char_table (call2, Qnil, char_table, function, 0, indices); |
| 2663 | return Qnil; | 2663 | return Qnil; |
| 2664 | } | 2664 | } |
| 2665 | 2665 | ||