1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(show-cursor-in-non-selected-windows): New option.

(busy-cursor-delay-seconds): New option.
This commit is contained in:
Gerd Moellmann 2000-02-25 13:34:08 +00:00
parent 4ae9a85e97
commit 1d0a3ef433

View file

@ -1096,6 +1096,16 @@ itself as a pre-command hook."
(set-default symbol value)
(setq display-busy-cursor value)))
(defcustom busy-cursor-delay-seconds 1
"*Seconds to wait before displaying a busy-cursor."
:tag "Busy-cursor delay"
:type 'integer
:group 'cursor
:get #'(lambda (symbol) busy-cursor-delay)
:set #'(lambda (symbol value)
(set-default symbol value)
(setq busy-cursor-delay value)))
(defcustom show-cursor-in-non-selected-windows t
"*Non-nil means show a hollow box cursor in non-selected-windows.