aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2025-10-19 15:14:20 +0200
committerMattias EngdegÄrd2025-10-19 15:14:20 +0200
commit04cb852c13e5dca1dedc90befc4f57b7b7b11ed6 (patch)
treefc2027b6c6dbe65133838d06f80d5e812f70411f /src/bytecode.c
parent346213f88373c50e09d620781c3dc51c21e92254 (diff)
downloademacs-04cb852c13e5dca1dedc90befc4f57b7b7b11ed6.tar.gz
emacs-04cb852c13e5dca1dedc90befc4f57b7b7b11ed6.zip
; * src/bytecode.c (exec_byte_code): editing mistake (thanks Pip!)
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;