aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-17 00:30:07 +0000
committerRichard M. Stallman1994-09-17 00:30:07 +0000
commit679e18b112eb8833afd2c58b1938be7a8506749e (patch)
tree67ae107505c76d946e3cb9216c36d65363b55ed0 /src
parentf0f787b8b8b2dc42e4331aa082fbc91aaeec9271 (diff)
downloademacs-679e18b112eb8833afd2c58b1938be7a8506749e.tar.gz
emacs-679e18b112eb8833afd2c58b1938be7a8506749e.zip
(Fnarrow_to_region, format1): Use EMACS_INT.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 554df33b503..05b96f9ec20 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1282,7 +1282,7 @@ or markers) bounding the text that should remain visible.")
1282 (b, e) 1282 (b, e)
1283 register Lisp_Object b, e; 1283 register Lisp_Object b, e;
1284{ 1284{
1285 register int i; 1285 register EMACS_INT i;
1286 1286
1287 CHECK_NUMBER_COERCE_MARKER (b, 0); 1287 CHECK_NUMBER_COERCE_MARKER (b, 0);
1288 CHECK_NUMBER_COERCE_MARKER (e, 1); 1288 CHECK_NUMBER_COERCE_MARKER (e, 1);
@@ -1582,7 +1582,7 @@ Use %% to put a single % into the output.")
1582Lisp_Object 1582Lisp_Object
1583#ifdef NO_ARG_ARRAY 1583#ifdef NO_ARG_ARRAY
1584format1 (string1, arg0, arg1, arg2, arg3, arg4) 1584format1 (string1, arg0, arg1, arg2, arg3, arg4)
1585 int arg0, arg1, arg2, arg3, arg4; 1585 EMACS_INT arg0, arg1, arg2, arg3, arg4;
1586#else 1586#else
1587format1 (string1) 1587format1 (string1)
1588#endif 1588#endif
@@ -1590,7 +1590,7 @@ format1 (string1)
1590{ 1590{
1591 char buf[100]; 1591 char buf[100];
1592#ifdef NO_ARG_ARRAY 1592#ifdef NO_ARG_ARRAY
1593 int args[5]; 1593 EMACS_INT args[5];
1594 args[0] = arg0; 1594 args[0] = arg0;
1595 args[1] = arg1; 1595 args[1] = arg1;
1596 args[2] = arg2; 1596 args[2] = arg2;