comparison lisp/frame.el @ 27916:3288a7cd4796

(busy-cursor-delay-seconds): Change type to `number'.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 01 Mar 2000 10:27:05 +0000
parents 2bf72063e6f0
children e27fde0193ef
comparison
equal deleted inserted replaced
27915:e5b8e194d279 27916:3288a7cd4796
1097 (setq display-busy-cursor value))) 1097 (setq display-busy-cursor value)))
1098 1098
1099 (defcustom busy-cursor-delay-seconds 1 1099 (defcustom busy-cursor-delay-seconds 1
1100 "*Seconds to wait before displaying a busy-cursor." 1100 "*Seconds to wait before displaying a busy-cursor."
1101 :tag "Busy-cursor delay" 1101 :tag "Busy-cursor delay"
1102 :type 'integer 1102 :type 'number
1103 :group 'cursor 1103 :group 'cursor
1104 :get #'(lambda (symbol) busy-cursor-delay) 1104 :get #'(lambda (symbol) busy-cursor-delay)
1105 :set #'(lambda (symbol value) 1105 :set #'(lambda (symbol value)
1106 (set-default symbol value) 1106 (set-default symbol value)
1107 (setq busy-cursor-delay value))) 1107 (setq busy-cursor-delay value)))