aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-04-02 10:19:52 +0000
committerGerd Moellmann <[email protected]>2001-04-02 10:19:52 +0000
commitc0eb3c10523c99549e2253f23e6ce3f65ce469cf (patch)
tree13185cc9d0f4909d982e3b07c6a335f335cdfe85 /lisp/frame.el
parenta46d278bd57fa084322d7c51de96490a2dcf74d5 (diff)
(cursor-in-non-selected-windows): Replaces
show-cursor-in-non-selected-windows.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index c05347c2d4..299cfa52b0 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1196,18 +1196,15 @@ itself as a pre-command hook."
: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)))