diff options
| author | Yuuki Harano | 2020-12-27 03:13:00 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2020-12-27 03:13:00 +0900 |
| commit | b64089c37b4305a511e5ddbf02746862c7c7575e (patch) | |
| tree | c6978d471e4b0b061b7cc9c46147968379aec94f /src/buffer.h | |
| parent | 565d8f57d349c19d9bbb5d5d5fdacf3c70b85d42 (diff) | |
| parent | 4b2ca6bfc079c66cfcf39f2f36dc139012787535 (diff) | |
| download | emacs-b64089c37b4305a511e5ddbf02746862c7c7575e.tar.gz emacs-b64089c37b4305a511e5ddbf02746862c7c7575e.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.h b/src/buffer.h index fe549c5dac1..b8c5162be4a 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -663,11 +663,11 @@ struct buffer | |||
| 663 | /* Non-zero whenever the narrowing is changed in this buffer. */ | 663 | /* Non-zero whenever the narrowing is changed in this buffer. */ |
| 664 | bool_bf clip_changed : 1; | 664 | bool_bf clip_changed : 1; |
| 665 | 665 | ||
| 666 | /* Non-zero for internally used temporary buffers that don't need to | 666 | /* Non-zero for internal or temporary buffers that don't need to |
| 667 | run hooks kill-buffer-hook, buffer-list-update-hook, and | 667 | run hooks kill-buffer-hook, kill-buffer-query-functions, and |
| 668 | kill-buffer-query-functions. This is used in coding.c to avoid | 668 | buffer-list-update-hook. This is used in coding.c to avoid |
| 669 | slowing down en/decoding when there are a lot of these hooks | 669 | slowing down en/decoding when a lot of these hooks are |
| 670 | defined. */ | 670 | defined, as well as by with-temp-buffer, for example. */ |
| 671 | bool_bf inhibit_buffer_hooks : 1; | 671 | bool_bf inhibit_buffer_hooks : 1; |
| 672 | 672 | ||
| 673 | /* List of overlays that end at or before the current center, | 673 | /* List of overlays that end at or before the current center, |