diff options
| author | Juanma Barranquero | 2007-06-27 11:40:26 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-27 11:40:26 +0000 |
| commit | 251db0f475e5a9af9861be3b983bafbdf9afd403 (patch) | |
| tree | aa54cade9a6832d1934e05513d40de9c35d77833 /src/buffer.c | |
| parent | 56f3136b14426dc58245c3f853740b3b6f68f9be (diff) | |
| download | emacs-251db0f475e5a9af9861be3b983bafbdf9afd403.tar.gz emacs-251db0f475e5a9af9861be3b983bafbdf9afd403.zip | |
(syms_of_buffer) <selective-display>: Fix typo in docstring.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 94955ed7c24..368da4763a5 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5652,8 +5652,8 @@ Backing up is done before the first time the file is saved. */); | |||
| 5652 | DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer->selective_display, | 5652 | DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer->selective_display, |
| 5653 | Qnil, | 5653 | Qnil, |
| 5654 | doc: /* Non-nil enables selective display. | 5654 | doc: /* Non-nil enables selective display. |
| 5655 | An Integer N as value means display only lines | 5655 | An integer N as value means display only lines |
| 5656 | that start with less than n columns of space. | 5656 | that start with less than N columns of space. |
| 5657 | A value of t means that the character ^M makes itself and | 5657 | A value of t means that the character ^M makes itself and |
| 5658 | all the rest of the line invisible; also, when saving the buffer | 5658 | all the rest of the line invisible; also, when saving the buffer |
| 5659 | in a file, save the ^M as a newline. */); | 5659 | in a file, save the ^M as a newline. */); |