diff options
| author | Joakim Verona | 2012-07-31 00:00:41 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-07-31 00:00:41 +0200 |
| commit | 55fa71b3d9bb8609ca3cbb56f92c776ad8724a69 (patch) | |
| tree | b002fe941cc8636f8bd735717e440014359839dd /src/data.c | |
| parent | 5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f (diff) | |
| parent | b429a4eee4e09b1ba09e17ced5091d042955d84f (diff) | |
| download | emacs-55fa71b3d9bb8609ca3cbb56f92c776ad8724a69.tar.gz emacs-55fa71b3d9bb8609ca3cbb56f92c776ad8724a69.zip | |
upstream
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index b23bcbe15b3..fd873b22d4d 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -928,7 +928,7 @@ store_symval_forwarding (union Lisp_Fwd *valcontents, register Lisp_Object newva | |||
| 928 | Lisp_Object type = XBUFFER_OBJFWD (valcontents)->slottype; | 928 | Lisp_Object type = XBUFFER_OBJFWD (valcontents)->slottype; |
| 929 | 929 | ||
| 930 | if (!(NILP (type) || NILP (newval) | 930 | if (!(NILP (type) || NILP (newval) |
| 931 | || (XINT (type) == LISP_INT_TAG | 931 | || (XINT (type) == Lisp_Int0 |
| 932 | ? INTEGERP (newval) | 932 | ? INTEGERP (newval) |
| 933 | : XTYPE (newval) == XINT (type)))) | 933 | : XTYPE (newval) == XINT (type)))) |
| 934 | buffer_slot_type_mismatch (newval, XINT (type)); | 934 | buffer_slot_type_mismatch (newval, XINT (type)); |
| @@ -2522,7 +2522,7 @@ arith_driver (enum arithop code, ptrdiff_t nargs, Lisp_Object *args) | |||
| 2522 | ptrdiff_t ok_args; | 2522 | ptrdiff_t ok_args; |
| 2523 | EMACS_INT ok_accum; | 2523 | EMACS_INT ok_accum; |
| 2524 | 2524 | ||
| 2525 | switch (SWITCH_ENUM_CAST (code)) | 2525 | switch (code) |
| 2526 | { | 2526 | { |
| 2527 | case Alogior: | 2527 | case Alogior: |
| 2528 | case Alogxor: | 2528 | case Alogxor: |
| @@ -2557,7 +2557,7 @@ arith_driver (enum arithop code, ptrdiff_t nargs, Lisp_Object *args) | |||
| 2557 | nargs, args); | 2557 | nargs, args); |
| 2558 | args[argnum] = val; | 2558 | args[argnum] = val; |
| 2559 | next = XINT (args[argnum]); | 2559 | next = XINT (args[argnum]); |
| 2560 | switch (SWITCH_ENUM_CAST (code)) | 2560 | switch (code) |
| 2561 | { | 2561 | { |
| 2562 | case Aadd: | 2562 | case Aadd: |
| 2563 | if (INT_ADD_OVERFLOW (accum, next)) | 2563 | if (INT_ADD_OVERFLOW (accum, next)) |
| @@ -2643,7 +2643,7 @@ float_arith_driver (double accum, ptrdiff_t argnum, enum arithop code, | |||
| 2643 | args[argnum] = val; /* runs into a compiler bug. */ | 2643 | args[argnum] = val; /* runs into a compiler bug. */ |
| 2644 | next = XINT (args[argnum]); | 2644 | next = XINT (args[argnum]); |
| 2645 | } | 2645 | } |
| 2646 | switch (SWITCH_ENUM_CAST (code)) | 2646 | switch (code) |
| 2647 | { | 2647 | { |
| 2648 | case Aadd: | 2648 | case Aadd: |
| 2649 | accum += next; | 2649 | accum += next; |