From: Erik Naggum Date: Thu, 19 Oct 1995 13:36:56 +0000 (+0000) Subject: (Fmap_char_table): Call map_char_table with correct args. X-Git-Tag: emacs-19.34~2608 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cf693838bdad1a9979af16e4557441928ce9253d;p=emacs.git (Fmap_char_table): Call map_char_table with correct args. --- diff --git a/src/fns.c b/src/fns.c index ef1bbffe135..74f256eaca4 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1377,7 +1377,7 @@ The key is always a possible RANGE argument to `set-char-table-range'.") Lisp_Object keyvec; Lisp_Object *indices = (Lisp_Object *) alloca (10 * sizeof (Lisp_Object)); - map_char_table (function, NULL, chartable, 0, indices); + map_char_table (NULL, function, chartable, 0, indices); return Qnil; }