1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; * src/bytecode.c (exec_byte_code): editing mistake (thanks Pip!)

This commit is contained in:
Mattias Engdegård 2025-10-19 15:14:20 +02:00
parent 346213f883
commit 04cb852c13

View file

@ -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;