Mercurial > emacs
changeset 16105:1712db4a1709
(map_char_table): Declare depth as int.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 04 Sep 1996 03:42:09 +0000 |
parents | f55ff5de378f |
children | fdd1b2ade15d |
files | src/fns.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Wed Sep 04 03:38:40 1996 +0000 +++ b/src/fns.c Wed Sep 04 03:42:09 1996 +0000 @@ -1349,7 +1349,8 @@ 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;