f1247f0 * lisp/frame.el (blink-cursor-delay): Doc fix. (Bug#24372)
ace7f14 * lisp/gnus/gnus-art.el (gnus-button-handle-library): Fix typo.
bbf1ffd Regexp Functions doc minor fixes
:group 'frames)
(defcustom blink-cursor-delay 0.5
- "Seconds of idle time after which cursor starts to blink."
+ "Seconds of idle time before the first blink of the cursor.
+ Values smaller than 0.2 sec are treated as 0.2 sec."
:type 'number
- :group 'cursor)
+ :group 'cursor
+ :set (lambda (symbol value)
+ (set-default symbol value)
+ (when blink-cursor-idle-timer (blink-cursor--start-idle-timer))))
(defcustom blink-cursor-interval 0.5
"Length of cursor blink interval in seconds."
"Call `locate-library' when pushing the corresponding URL button."
(gnus-message 9 "url=`%s'" url)
(let* ((lib (locate-library url))
- (file (gnus-replace-in-string (or lib "") "\\.elc" ".el")))
+ (file (replace-regexp-in-string "\\.elc" ".el" (or lib ""))))
(if (not lib)
- (gnus-message 1 "Cannot locale library `%s'." url)
+ (gnus-message 1 "Cannot locate library `%s'." url)
(find-file-read-only file))))
(defcustom gnus-button-man-level 5