summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-05-20 14:51:17 +0000
committerRichard M. Stallman <rms@gnu.org>2002-05-20 14:51:17 +0000
commitfb0b0b684e0c96ad94a8675cba87dc3157368e76 (patch)
treefd8ac6a5e726432cf9eaaaea6b5e39517c06895a /src
parent2a5b1abc7520d1213bb58a39989ecab64de59254 (diff)
downloademacs-fb0b0b684e0c96ad94a8675cba87dc3157368e76.tar.gz
(syms_of_buffer) <cursor-type>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c15
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. */);
Vinhibit_read_only = Qnil;
DEFVAR_PER_BUFFER ("cursor-type", &current_buffer->cursor_type, Qnil,
- doc: /* Cursor to use in window displaying this buffer.
+ doc: /* Cursor to use when this buffer is in the selected window.
Values are interpreted as follows:
- t use the cursor specified for the frame
- nil don't display a cursor
- `bar' display a bar cursor with default width
- (bar . WIDTH) display a bar cursor with width WIDTH
- others display a box cursor. */);
+ t use the cursor specified for the frame
+ nil don't display a cursor
+ bar display a bar cursor with default width
+ (bar . WIDTH) display a bar cursor with width WIDTH
+ ANYTHING ELSE display a box cursor.
+
+When the buffer is displayed in a nonselected window,
+this variable has no effect; the cursor appears as a hollow box. */);
DEFVAR_PER_BUFFER ("line-spacing",
&current_buffer->extra_line_spacing, Qnil,