diff options
| author | Mattias EngdegÄrd | 2025-09-23 15:01:20 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2025-10-16 19:27:17 +0200 |
| commit | 8d6d4a9856f010519abeed503249e172625e9da5 (patch) | |
| tree | 588d1f1f113c6cdf1e9adcbbc02607b9852cef35 /src/bytecode.c | |
| parent | 58a5a1f0988790b94bf08cfa73864427a698ef64 (diff) | |
| download | emacs-8d6d4a9856f010519abeed503249e172625e9da5.tar.gz emacs-8d6d4a9856f010519abeed503249e172625e9da5.zip | |
; exec_byte_code: don't re-use op in FETCH2
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 6230897939e..e116936e55d 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -275,7 +275,7 @@ enum byte_code_op | |||
| 275 | /* Fetch two bytes from the bytecode stream and make a 16-bit number | 275 | /* Fetch two bytes from the bytecode stream and make a 16-bit number |
| 276 | out of them. */ | 276 | out of them. */ |
| 277 | 277 | ||
| 278 | #define FETCH2 (op = FETCH, op | (FETCH << 8)) | 278 | #define FETCH2 (pc += 2, pc[-2] | pc[-1] << 8) |
| 279 | 279 | ||
| 280 | /* Push X onto the execution stack. The expression X should not | 280 | /* Push X onto the execution stack. The expression X should not |
| 281 | contain TOP, to avoid competing side effects. */ | 281 | contain TOP, to avoid competing side effects. */ |