From: Richard M. Stallman Date: Wed, 4 Sep 1996 03:42:09 +0000 (+0000) Subject: (map_char_table): Declare depth as int. X-Git-Tag: emacs-20.1~3839 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1847b19b418ea91f8277327ce6296ad7416e81dd;p=emacs.git (map_char_table): Declare depth as int. --- 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;