summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-04 03:42:09 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-04 03:42:09 +0000
commite6a92600539f3c4b1456a58b6b2bd184dd3f06d7 (patch)
tree70d0378d814381388b51598dfefdf86b391a3bdd /src/fns.c
parent33157df5e00aba70216a113f3e432064fb3eab8a (diff)
downloademacs-e6a92600539f3c4b1456a58b6b2bd184dd3f06d7.tar.gz
(map_char_table): Declare depth as int.
Diffstat (limited to 'src/fns.c')
-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.")
void
map_char_table (c_function, function, chartable, depth, indices)
- Lisp_Object (*c_function) (), function, chartable, depth, *indices;
+ Lisp_Object (*c_function) (), function, chartable, *indices;
+ int depth;
{
int i;
int size = CHAR_TABLE_ORDINARY_SLOTS;