From: Richard M. Stallman Date: Thu, 4 May 1995 21:37:43 +0000 (+0000) Subject: (arith_driver): Make accum and next EMACS_INTs. X-Git-Tag: emacs-19.34~4170 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5260234d4309ff40f02424a3266226cfeeebe8bf;p=emacs.git (arith_driver): Make accum and next EMACS_INTs. (Fmod): i1 and i2 are EMACS_INT. --- diff --git a/src/data.c b/src/data.c index 2dc25cf8301..af5f67fa227 100644 --- a/src/data.c +++ b/src/data.c @@ -1707,8 +1707,8 @@ arith_driver (code, nargs, args) { register Lisp_Object val; register int argnum; - register int accum; - register int next; + register EMACS_INT accum; + register EMACS_INT next; switch (SWITCH_ENUM_CAST (code)) { @@ -1917,7 +1917,7 @@ Both X and Y must be numbers or markers.") register Lisp_Object num1, num2; { Lisp_Object val; - int i1, i2; + EMACS_INT i1, i2; #ifdef LISP_FLOAT_TYPE CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (num1, 0);