diff options
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, |