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 2c4e1cca48d..f8ecc4f64c0 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -699,7 +699,7 @@ If the third argument is incorrect, Emacs may crash.") | |||
| 699 | v1 = TOP; | 699 | v1 = TOP; |
| 700 | v2 = Fget (v1, Qbyte_code_meter); | 700 | v2 = Fget (v1, Qbyte_code_meter); |
| 701 | if (INTEGERP (v2) | 701 | if (INTEGERP (v2) |
| 702 | && XINT (v2) != ((1<<VALBITS)-1)) | 702 | && XINT (v2) < MOST_POSITIVE_FIXNUM) |
| 703 | { | 703 | { |
| 704 | XSETINT (v2, XINT (v2) + 1); | 704 | XSETINT (v2, XINT (v2) + 1); |
| 705 | Fput (v1, Qbyte_code_meter, v2); | 705 | Fput (v1, Qbyte_code_meter, v2); |