]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-25
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 10 Oct 2016 14:35:31 +0000 (07:35 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 10 Oct 2016 14:35:31 +0000 (07:35 -0700)
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

1  2 
doc/lispref/searching.texi
lisp/frame.el
lisp/gnus/gnus-art.el

Simple merge
diff --cc lisp/frame.el
index 1c796be8c11aea3dd36183d45dcb122a0e2127ea,c3f621241ab5272967dcc69500a8d0b99f5445cb..a5845670502065340273325f19e6adea88bef0ba
@@@ -2036,12 -2028,10 +2036,13 @@@ This timer calls `blink-cursor-timer-fu
    :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."
index d7737cef4a422a0ebf8bad48aa7076d3703bba7e,67e604910ab3e19ed342d04206594aca851c0ce4..738adb553edea4d214368f6154ee18f7c78b031f
@@@ -7637,9 -7736,9 +7637,9 @@@ Calls `describe-variable' or `describe-
    "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