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:
parent
346213f883
commit
04cb852c13
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue