aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2025-09-23 15:01:20 +0200
committerMattias EngdegÄrd2025-10-16 19:27:17 +0200
commit8d6d4a9856f010519abeed503249e172625e9da5 (patch)
tree588d1f1f113c6cdf1e9adcbbc02607b9852cef35 /src/bytecode.c
parent58a5a1f0988790b94bf08cfa73864427a698ef64 (diff)
downloademacs-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.c2
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. */