From 04cb852c13e5dca1dedc90befc4f57b7b7b11ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Engdeg=C3=A5rd?= Date: Sun, 19 Oct 2025 15:14:20 +0200 Subject: [PATCH] ; * src/bytecode.c (exec_byte_code): editing mistake (thanks Pip!) --- src/bytecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bytecode.c b/src/bytecode.c index 64d9e5d27c6..e3e36d9b315 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -858,7 +858,7 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template, if (BYTE_CODE_SAFE && !(arg >= 0 && arg < bytestr_length)) emacs_abort (); const unsigned char *new_pc = bytestr_data + arg; - quitcounter += arg < 0; + quitcounter += new_pc < pc; if (!quitcounter) { quitcounter = 1;