1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

(cursor-in-non-selected-windows): Replaces

show-cursor-in-non-selected-windows.
This commit is contained in:
Gerd Moellmann 2001-04-02 10:19:52 +00:00
parent a46d278bd5
commit c0eb3c1052
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2001-04-02 Gerd Moellmann <gerd@gnu.org>
* frame.el (cursor-in-non-selected-windows): Replaces
show-cursor-in-non-selected-windows.
2001-03-31 Kenichi Handa <handa@etl.go.jp>
* international/titdic-cnv.el (quail-cxterm-package-ext-info):
@ -14,7 +19,7 @@
eight-bit-control chars.
* international/encoded-kb.el (encoded-kbd-self-insert-ccl):
Reduce making temporary vector (suggested by by Dave Love).
Reduce making temporary vector (suggested by Dave Love).
2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>

View File

@ -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)))