Mercurial > emacs
comparison lisp/frame.el @ 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 | 34ffe86aeeae |
children | 7bee98ffa33b |
comparison
equal
deleted
inserted
replaced
37131:ffd4040b1b0b | 37132:7d4fab575208 |
---|---|
1194 :tag "Hourglass delay" | 1194 :tag "Hourglass delay" |
1195 :type 'number | 1195 :type 'number |
1196 :group 'cursor) | 1196 :group 'cursor) |
1197 | 1197 |
1198 | 1198 |
1199 (defcustom show-cursor-in-non-selected-windows t | 1199 (defcustom cursor-in-non-selected-windows t |
1200 "*Non-nil means show a hollow box cursor in non-selected-windows. | 1200 "*Non-nil means show a hollow box cursor in non-selected-windows. |
1201 If nil, don't show a cursor except in the selected window. | 1201 If nil, don't show a cursor except in the selected window. |
1202 Setting this variable directly has no effect; use custom instead | 1202 Use Custom to set this variable to get the display updated." |
1203 \(or set the variable `cursor-in-non-selected-windows')." | |
1204 :tag "Cursor in non-selected windows" | 1203 :tag "Cursor in non-selected windows" |
1205 :type 'boolean | 1204 :type 'boolean |
1206 :group 'cursor | 1205 :group 'cursor |
1207 :get #'(lambda (symbol) cursor-in-non-selected-windows) | |
1208 :set #'(lambda (symbol value) | 1206 :set #'(lambda (symbol value) |
1209 (set-default symbol value) | 1207 (set-default symbol value) |
1210 (setq cursor-in-non-selected-windows value) | |
1211 (force-mode-line-update t))) | 1208 (force-mode-line-update t))) |
1212 | 1209 |
1213 | 1210 |
1214 ;;;; Key bindings | 1211 ;;;; Key bindings |
1215 | 1212 |