Merge from origin/emacs-25
8ad0d7d
; Fix quoting in etc/NEWS6b9dee1
Change Tramp version to "2.2.13.25.2"62f2684
* lisp/emacs-lisp/autoload.el (update-directory-autoloads): F...b2f32e4
Don't scan compiled module files for autoloads9a758b4
Fix Bug#24698baa8ba4
* lisp/subr.el (start-process): Doc fix. (Bug#24693)e535ca4
Fix display of vc-dir CVS file statuses in subdirectories12da149
Update URL of MS-Windows optional DLLs2331056
Merge branch 'emacs-25' of git.savannah.gnu.org:/srv/git/emac...a4285bc
* lisp/simple.el (process-menu-mode, list-processes--refresh)...b0c447e
* lisp/ibuf-ext.el (ibuffer-do-shell-command-file): Fix non-f...cf3c19b
* lisp/ibuffer.el (ibuffer): Improve 'other-window' case. (B... # Conflicts: # doc/misc/trampver.texi # etc/NEWS # lisp/net/tramp-sh.el # lisp/net/trampver.el
This commit is contained in:
commit
6df147c61a
7 changed files with 172 additions and 240 deletions
|
@ -1012,7 +1012,12 @@ write its autoloads into the specified file instead."
|
|||
(interactive "DUpdate autoloads from directory: ")
|
||||
(let* ((files-re (let ((tmp nil))
|
||||
(dolist (suf (get-load-suffixes))
|
||||
(unless (string-match "\\.elc" suf) (push suf tmp)))
|
||||
;; We don't use module-file-suffix below because
|
||||
;; we don't want to depend on whether Emacs was
|
||||
;; built with or without modules support, nor
|
||||
;; what is the suffix for the underlying OS.
|
||||
(unless (string-match "\\.\\(elc\\|\\so\\|dll\\)" suf)
|
||||
(push suf tmp)))
|
||||
(concat "^[^=.].*" (regexp-opt tmp t) "\\'")))
|
||||
(files (apply #'nconc
|
||||
(mapcar (lambda (dir)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue