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 | |
| parent | 301d4a3f34e23bb74c1eb33775d8f53596d81241 (diff) | |
| download | emacs-cd8d52361f03c9554cf89422490030adadaf970c.tar.gz emacs-cd8d52361f03c9554cf89422490030adadaf970c.zip | |
(syms_of_buffer) <cursor-type>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/buffer.c | 15 |
2 files changed, 11 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 99e03b87961..40f74df59e0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2002-05-20 Richard M. Stallman <rms@gnu.org> | 1 | 2002-05-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * buffer.c (syms_of_buffer) <cursor-type>: Doc fix. | ||
| 4 | |||
| 3 | * keyboard.c (read_char_minibuf_menu_prompt): Don't list | 5 | * keyboard.c (read_char_minibuf_menu_prompt): Don't list |
| 4 | equivalent key bindings here. | 6 | equivalent key bindings here. |
| 5 | 7 | ||
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, |