* casefiddle.c (operate_on_word): Declare end to be an int, not a
authorJim Blandy <jimb@redhat.com>
Sat, 31 Oct 1992 04:54:35 +0000 (04:54 +0000)
committerJim Blandy <jimb@redhat.com>
Sat, 31 Oct 1992 04:54:35 +0000 (04:54 +0000)
Lisp_Object.

src/casefiddle.c

index 87dd1c7..6682bc1 100644 (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));