diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index c1699aeae73..46bd7e0e253 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2928,7 +2928,7 @@ arith_driver (enum arithop code, ptrdiff_t nargs, Lisp_Object *args, | |||
| 2928 | ptrdiff_t argnum = 0; | 2928 | ptrdiff_t argnum = 0; |
| 2929 | /* Set ACCUM to VAL's value if it is a fixnum, otherwise to some | 2929 | /* Set ACCUM to VAL's value if it is a fixnum, otherwise to some |
| 2930 | ignored value to avoid using an uninitialized variable later. */ | 2930 | ignored value to avoid using an uninitialized variable later. */ |
| 2931 | intmax_t accum = XFIXNUM (val); | 2931 | intmax_t accum = XFIXNUM_RAW (val); |
| 2932 | 2932 | ||
| 2933 | if (FIXNUMP (val)) | 2933 | if (FIXNUMP (val)) |
| 2934 | while (true) | 2934 | while (true) |