aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 2b1eccdc518..d75767bb0c5 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1480,8 +1480,8 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
1480 1480
1481 CASE (Bnarrow_to_region): 1481 CASE (Bnarrow_to_region):
1482 { 1482 {
1483 Lisp_Object v2 = POP, v1 = POP; 1483 Lisp_Object v1 = POP;
1484 TOP = Fnarrow_to_region (TOP, v1, v2); 1484 TOP = Fnarrow_to_region (TOP, v1);
1485 NEXT; 1485 NEXT;
1486 } 1486 }
1487 1487