aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-04 03:42:09 +0000
committerRichard M. Stallman1996-09-04 03:42:09 +0000
commit1847b19b418ea91f8277327ce6296ad7416e81dd (patch)
tree3b7e2d65fb67240e47f80cfa2418af2400fbd8e3 /src
parent2ef60670b388ac3e7d398b19d99a2bcd8fee5ae4 (diff)
downloademacs-1847b19b418ea91f8277327ce6296ad7416e81dd.tar.gz
emacs-1847b19b418ea91f8277327ce6296ad7416e81dd.zip
(map_char_table): Declare depth as int.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 64969bc9cab..46a9bbe25bf 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1349,7 +1349,8 @@ or a character code.")
1349 1349
1350void 1350void
1351map_char_table (c_function, function, chartable, depth, indices) 1351map_char_table (c_function, function, chartable, depth, indices)
1352 Lisp_Object (*c_function) (), function, chartable, depth, *indices; 1352 Lisp_Object (*c_function) (), function, chartable, *indices;
1353 int depth;
1353{ 1354{
1354 int i; 1355 int i;
1355 int size = CHAR_TABLE_ORDINARY_SLOTS; 1356 int size = CHAR_TABLE_ORDINARY_SLOTS;