changeset 45421:4c14a5806a68

(syms_of_buffer) <cursor-type>: Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Mon, 20 May 2002 14:51:17 +0000
parents e7b11902143a
children a466970fd1ee
files src/buffer.c
diffstat 1 files changed, 9 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Mon May 20 14:50:25 2002 +0000
+++ b/src/buffer.c	Mon May 20 14:51:17 2002 +0000
@@ -5660,14 +5660,17 @@
   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,