aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1995-10-19 13:36:56 +0000
committerErik Naggum1995-10-19 13:36:56 +0000
commitcf693838bdad1a9979af16e4557441928ce9253d (patch)
treee6e1a93a2c6cbb2cf6154b8b73c2f11423887dc0 /src
parent30f2f7c6ed1c8aa838bfe5c954ed084c24627c23 (diff)
downloademacs-cf693838bdad1a9979af16e4557441928ce9253d.tar.gz
emacs-cf693838bdad1a9979af16e4557441928ce9253d.zip
(Fmap_char_table): Call map_char_table with correct args.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
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'.")
1377 Lisp_Object keyvec; 1377 Lisp_Object keyvec;
1378 Lisp_Object *indices = (Lisp_Object *) alloca (10 * sizeof (Lisp_Object)); 1378 Lisp_Object *indices = (Lisp_Object *) alloca (10 * sizeof (Lisp_Object));
1379 1379
1380 map_char_table (function, NULL, chartable, 0, indices); 1380 map_char_table (NULL, function, chartable, 0, indices);
1381 return Qnil; 1381 return Qnil;
1382} 1382}
1383 1383