diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-10-19 10:59:05 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-10-19 10:59:05 +0300 |
commit | 62f268414c1a04235b34befe3ad103cecec72382 (patch) | |
tree | 48e891ae01d5124ad503cb7af6e883d50638a3af /lisp | |
parent | b2f32e4c9a06234019f07f448b53b76e62aebbba (diff) | |
download | emacs-62f268414c1a04235b34befe3ad103cecec72382.tar.gz |
* lisp/emacs-lisp/autoload.el (update-directory-autoloads): Fix last change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index d4b9479b752..883a38a4884 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -770,8 +770,7 @@ write its autoloads into the specified file instead." ;; 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) + (unless (string-match "\\.\\(elc\\|\\so\\|dll\\)" suf) (push suf tmp))) (concat "^[^=.].*" (regexp-opt tmp t) "\\'"))) (files (apply 'nconc |