diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 5ac8b4fa2bd..753f149ae01 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -553,7 +553,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, | |||
| 553 | if (INTEGERP (args_template)) | 553 | if (INTEGERP (args_template)) |
| 554 | { | 554 | { |
| 555 | ptrdiff_t at = XINT (args_template); | 555 | ptrdiff_t at = XINT (args_template); |
| 556 | int rest = at & 128; | 556 | bool rest = (at & 128) != 0; |
| 557 | int mandatory = at & 127; | 557 | int mandatory = at & 127; |
| 558 | ptrdiff_t nonrest = at >> 8; | 558 | ptrdiff_t nonrest = at >> 8; |
| 559 | eassert (mandatory <= nonrest); | 559 | eassert (mandatory <= nonrest); |