diff options
| author | Paul Eggert | 2017-01-25 21:13:19 -0800 |
|---|---|---|
| committer | Paul Eggert | 2017-01-25 21:25:37 -0800 |
| commit | b3a3ed526d2c490c9c5605707f0cd7bff3c88693 (patch) | |
| tree | 096de6603250aafcab11c31876d39faecf1b2db4 /src/decompress.c | |
| parent | 1392ec7420ee23238a1588b759c631d87a677483 (diff) | |
| download | emacs-b3a3ed526d2c490c9c5605707f0cd7bff3c88693.tar.gz emacs-b3a3ed526d2c490c9c5605707f0cd7bff3c88693.zip | |
Replace QUIT with maybe_quit
There’s no longer need to have QUIT stand for a slug of C statements.
Use the more-obvious function-call syntax instead.
Also, use true and false when setting immediate_quit.
These changes should not affect the generated machine code.
* src/lisp.h (QUIT): Remove. All uses replaced by maybe_quit.
Diffstat (limited to 'src/decompress.c')
| -rw-r--r-- | src/decompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decompress.c b/src/decompress.c index f6628d5ddd9..a53a66df187 100644 --- a/src/decompress.c +++ b/src/decompress.c | |||
| @@ -186,7 +186,7 @@ This function can be called only in unibyte buffers. */) | |||
| 186 | decompressed = avail_out - stream.avail_out; | 186 | decompressed = avail_out - stream.avail_out; |
| 187 | insert_from_gap (decompressed, decompressed, 0); | 187 | insert_from_gap (decompressed, decompressed, 0); |
| 188 | unwind_data.nbytes += decompressed; | 188 | unwind_data.nbytes += decompressed; |
| 189 | QUIT; | 189 | maybe_quit (); |
| 190 | } | 190 | } |
| 191 | while (inflate_status == Z_OK); | 191 | while (inflate_status == Z_OK); |
| 192 | 192 | ||