aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorJuanma Barranquero2007-06-27 11:40:26 +0000
committerJuanma Barranquero2007-06-27 11:40:26 +0000
commit251db0f475e5a9af9861be3b983bafbdf9afd403 (patch)
treeaa54cade9a6832d1934e05513d40de9c35d77833 /src/buffer.c
parent56f3136b14426dc58245c3f853740b3b6f68f9be (diff)
downloademacs-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.c4
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", &current_buffer->selective_display, 5652 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5653 Qnil, 5653 Qnil,
5654 doc: /* Non-nil enables selective display. 5654 doc: /* Non-nil enables selective display.
5655An Integer N as value means display only lines 5655An integer N as value means display only lines
5656that start with less than n columns of space. 5656that start with less than N columns of space.
5657A value of t means that the character ^M makes itself and 5657A value of t means that the character ^M makes itself and
5658all the rest of the line invisible; also, when saving the buffer 5658all the rest of the line invisible; also, when saving the buffer
5659in a file, save the ^M as a newline. */); 5659in a file, save the ^M as a newline. */);