]> git.eshelyaron.com Git - emacs.git/commitdiff
* data.c (arith_driver): Omit unnecessary mask and test.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 27 May 2011 19:48:22 +0000 (12:48 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 27 May 2011 19:48:22 +0000 (12:48 -0700)
src/data.c

index ce0e8e40f512196ecdc147472e8d41c892b2eb95..a26627875abb7b563da5c19ac418c1681dbecfe1 100644 (file)
@@ -2531,9 +2531,6 @@ arith_driver (enum arithop code, size_t nargs, register Lisp_Object *args)
        }
     }
 
-  accum &= INTMASK;
-  if (MOST_POSITIVE_FIXNUM < accum)
-    accum += MOST_NEGATIVE_FIXNUM - (MOST_POSITIVE_FIXNUM + 1);
   XSETINT (val, accum);
   return val;
 }