changeset 37132:7d4fab575208

(cursor-in-non-selected-windows): Replaces show-cursor-in-non-selected-windows.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 02 Apr 2001 10:18:33 +0000
parents ffd4040b1b0b
children ccd446003e78
files lisp/frame.el
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/frame.el	Mon Apr 02 08:01:09 2001 +0000
+++ b/lisp/frame.el	Mon Apr 02 10:18:33 2001 +0000
@@ -1196,18 +1196,15 @@
   :group 'cursor)
 
 
-(defcustom show-cursor-in-non-selected-windows t
+(defcustom cursor-in-non-selected-windows t
   "*Non-nil means show a hollow box cursor in non-selected-windows.
 If nil, don't show a cursor except in the selected window.
-Setting this variable directly has no effect; use custom instead
-\(or set the variable `cursor-in-non-selected-windows')."
+Use Custom to set this variable to get the display updated." 
   :tag "Cursor in non-selected windows"
   :type 'boolean
   :group 'cursor
-  :get #'(lambda (symbol) cursor-in-non-selected-windows)
   :set #'(lambda (symbol value)
 	   (set-default symbol value)
-	   (setq cursor-in-non-selected-windows value)
 	   (force-mode-line-update t)))