From: Gerd Moellmann Date: Fri, 25 Feb 2000 13:34:08 +0000 (+0000) Subject: (show-cursor-in-non-selected-windows): New option. X-Git-Tag: emacs-pretest-21.0.90~4884 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1d0a3ef4331dbdbbcc700e740ba6d90efd0ddb02;p=emacs.git (show-cursor-in-non-selected-windows): New option. (busy-cursor-delay-seconds): New option. --- diff --git a/lisp/frame.el b/lisp/frame.el index bd153f915f3..d993eeba69f 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -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.