aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
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 96f1f905812..c5cc6590121 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -291,7 +291,7 @@ enum byte_code_op
291/* Fetch two bytes from the bytecode stream and make a 16-bit number 291/* Fetch two bytes from the bytecode stream and make a 16-bit number
292 out of them. */ 292 out of them. */
293 293
294#define FETCH2 (op = FETCH, op + (FETCH << 8)) 294#define FETCH2 (op = FETCH, op | (FETCH << 8))
295 295
296/* Push X onto the execution stack. The expression X should not 296/* Push X onto the execution stack. The expression X should not
297 contain TOP, to avoid competing side effects. */ 297 contain TOP, to avoid competing side effects. */