diff options
| author | Juanma Barranquero | 2007-06-27 11:36:59 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-27 11:36:59 +0000 |
| commit | a66f285afd7447e1d8d69ba1afa53fd3cb69cf43 (patch) | |
| tree | e14a8654f879312b0e144dd8901685efcab1cb2e /src/buffer.c | |
| parent | 70c8363080a613b78d24d1c7b58a062321fc44c8 (diff) | |
| download | emacs-a66f285afd7447e1d8d69ba1afa53fd3cb69cf43.tar.gz emacs-a66f285afd7447e1d8d69ba1afa53fd3cb69cf43.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. */); |