aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-05-20 14:51:24 +0000
committerRichard M. Stallman <[email protected]>2002-05-20 14:51:24 +0000
commitcd8d52361f03c9554cf89422490030adadaf970c (patch)
tree125f9a1fb86a152261fb5a63099fadf3d7ce1bf4 /src/buffer.c
parent301d4a3f34e23bb74c1eb33775d8f53596d81241 (diff)
(syms_of_buffer) <cursor-type>: Doc fix.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 27ad62366b..39d8d957a7 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,