]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fnarrow_to_region, format1): Use EMACS_INT.
authorRichard M. Stallman <rms@gnu.org>
Sat, 17 Sep 1994 00:30:07 +0000 (00:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 17 Sep 1994 00:30:07 +0000 (00:30 +0000)
src/editfns.c

index 554df33b50334b9a66ec3466fc70dd5f324cbbf6..05b96f9ec20fcacc0c5ffd534c074dc88b02d6d5 100644 (file)
@@ -1282,7 +1282,7 @@ or markers) bounding the text that should remain visible.")
   (b, e)
      register Lisp_Object b, e;
 {
-  register int i;
+  register EMACS_INT i;
 
   CHECK_NUMBER_COERCE_MARKER (b, 0);
   CHECK_NUMBER_COERCE_MARKER (e, 1);
@@ -1582,7 +1582,7 @@ Use %% to put a single % into the output.")
 Lisp_Object
 #ifdef NO_ARG_ARRAY
 format1 (string1, arg0, arg1, arg2, arg3, arg4)
-     int arg0, arg1, arg2, arg3, arg4;
+     EMACS_INT arg0, arg1, arg2, arg3, arg4;
 #else
 format1 (string1)
 #endif
@@ -1590,7 +1590,7 @@ format1 (string1)
 {
   char buf[100];
 #ifdef NO_ARG_ARRAY
-  int args[5];
+  EMACS_INT args[5];
   args[0] = arg0;
   args[1] = arg1;
   args[2] = arg2;