aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2025-09-23 15:01:20 +0200
committerMattias EngdegÄrd2025-10-19 14:57:34 +0200
commitfbc68bbc369b7d89b91763a687efbc0880c2420e (patch)
tree222bb7cea9a4f33ed18abd181cfccc61e641b6c9 /src/bytecode.c
parentb72e352cb42cf66e8750f6e4f53331730f544589 (diff)
downloademacs-fbc68bbc369b7d89b91763a687efbc0880c2420e.tar.gz
emacs-fbc68bbc369b7d89b91763a687efbc0880c2420e.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. */