diff options
| author | Richard M. Stallman | 2002-05-20 14:51:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-05-20 14:51:24 +0000 |
| commit | cd8d52361f03c9554cf89422490030adadaf970c (patch) | |
| tree | 125f9a1fb86a152261fb5a63099fadf3d7ce1bf4 /src/buffer.c | |
| parent | 301d4a3f34e23bb74c1eb33775d8f53596d81241 (diff) | |
| download | emacs-cd8d52361f03c9554cf89422490030adadaf970c.tar.gz emacs-cd8d52361f03c9554cf89422490030adadaf970c.zip | |
(syms_of_buffer) <cursor-type>: Doc fix.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/buffer.c b/src/buffer.c index 27ad62366b9..39d8d957a75 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5660,14 +5660,17 @@ is a member of the list. */); | |||
| 5660 | Vinhibit_read_only = Qnil; | 5660 | Vinhibit_read_only = Qnil; |
| 5661 | 5661 | ||
| 5662 | DEFVAR_PER_BUFFER ("cursor-type", ¤t_buffer->cursor_type, Qnil, | 5662 | DEFVAR_PER_BUFFER ("cursor-type", ¤t_buffer->cursor_type, Qnil, |
| 5663 | doc: /* Cursor to use in window displaying this buffer. | 5663 | doc: /* Cursor to use when this buffer is in the selected window. |
| 5664 | Values are interpreted as follows: | 5664 | Values are interpreted as follows: |
| 5665 | 5665 | ||
| 5666 | t use the cursor specified for the frame | 5666 | t use the cursor specified for the frame |
| 5667 | nil don't display a cursor | 5667 | nil don't display a cursor |
| 5668 | `bar' display a bar cursor with default width | 5668 | bar display a bar cursor with default width |
| 5669 | (bar . WIDTH) display a bar cursor with width WIDTH | 5669 | (bar . WIDTH) display a bar cursor with width WIDTH |
| 5670 | others display a box cursor. */); | 5670 | ANYTHING ELSE display a box cursor. |
| 5671 | |||
| 5672 | When the buffer is displayed in a nonselected window, | ||
| 5673 | this variable has no effect; the cursor appears as a hollow box. */); | ||
| 5671 | 5674 | ||
| 5672 | DEFVAR_PER_BUFFER ("line-spacing", | 5675 | DEFVAR_PER_BUFFER ("line-spacing", |
| 5673 | ¤t_buffer->extra_line_spacing, Qnil, | 5676 | ¤t_buffer->extra_line_spacing, Qnil, |