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 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,
858 if (BYTE_CODE_SAFE && !(arg >= 0 && arg < bytestr_length)) 858 if (BYTE_CODE_SAFE && !(arg >= 0 && arg < bytestr_length))
859 emacs_abort (); 859 emacs_abort ();
860 const unsigned char *new_pc = bytestr_data + arg; 860 const unsigned char *new_pc = bytestr_data + arg;
861 quitcounter += arg < 0; 861 quitcounter += new_pc < pc;
862 if (!quitcounter) 862 if (!quitcounter)
863 { 863 {
864 quitcounter = 1; 864 quitcounter = 1;