diff options
| author | Eli Zaretskii | 2020-11-30 20:42:06 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2020-11-30 20:42:06 +0200 |
| commit | 9fbff9c35cb4a6c5099178d6c712690ea4614d6a (patch) | |
| tree | adec8006f03dd8270ea63a9f7e7f3b3572a7073c /src/buffer.c | |
| parent | 9e0085064b2f48f0f3bc52159da94ab4424fef6f (diff) | |
| download | emacs-9fbff9c35cb4a6c5099178d6c712690ea4614d6a.tar.gz emacs-9fbff9c35cb4a6c5099178d6c712690ea4614d6a.zip | |
; * src/buffer.c: Fix comment describing 'buffer_defaults'.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 5433c80edb0..f252f3d7ebf 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -67,8 +67,9 @@ struct buffer buffer_defaults; | |||
| 67 | 67 | ||
| 68 | /* This structure marks which slots in a buffer have corresponding | 68 | /* This structure marks which slots in a buffer have corresponding |
| 69 | default values in buffer_defaults. | 69 | default values in buffer_defaults. |
| 70 | Each such slot has a nonzero value in this structure. | 70 | Each such slot has a value in this structure. |
| 71 | The value has only one nonzero bit. | 71 | The value is a positive Lisp integer that must be smaller than |
| 72 | MAX_PER_BUFFER_VARS. | ||
| 72 | 73 | ||
| 73 | When a buffer has its own local value for a slot, | 74 | When a buffer has its own local value for a slot, |
| 74 | the entry for that slot (found in the same slot in this structure) | 75 | the entry for that slot (found in the same slot in this structure) |