mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 18:00:40 -08:00
(arith_driver): Make accum and next EMACS_INTs.
(Fmod): i1 and i2 are EMACS_INT.
This commit is contained in:
parent
1df90f8fe8
commit
5260234d43
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue