diff options
| author | Mattias EngdegÄrd | 2025-10-19 15:14:20 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2025-10-19 15:14:20 +0200 |
| commit | 04cb852c13e5dca1dedc90befc4f57b7b7b11ed6 (patch) | |
| tree | fc2027b6c6dbe65133838d06f80d5e812f70411f /src/bytecode.c | |
| parent | 346213f88373c50e09d620781c3dc51c21e92254 (diff) | |
| download | emacs-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.c | 2 |
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; |