1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

* casefiddle.c (operate_on_word): Declare end to be an int, not a

Lisp_Object.
This commit is contained in:
Jim Blandy 1992-10-31 04:54:35 +00:00
parent d177f19458
commit 39fb55ffbd

View file

@ -190,8 +190,8 @@ Lisp_Object
operate_on_word (arg)
Lisp_Object arg;
{
Lisp_Object val, end;
int farend;
Lisp_Object val;
int end, farend;
CHECK_NUMBER (arg, 0);
farend = scan_words (point, XINT (arg));