summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2016-01-06 23:35:53 -0800
committerGlenn Morris <rgm@gnu.org>2016-01-06 23:35:53 -0800
commita0b7842700dfa3c730a1aed5fefa222c0f84605f (patch)
tree118bb21419c580092075af71f39f226ab173d4b1 /lisp/emacs-lisp
parent3517db2d39fc5a95d478d906b11903a7d70e4873 (diff)
downloademacs-a0b7842700dfa3c730a1aed5fefa222c0f84605f.tar.gz
emacs-a0b7842700dfa3c730a1aed5fefa222c0f84605f.tar.bz2
emacs-a0b7842700dfa3c730a1aed5fefa222c0f84605f.zip
; * lisp/emacs-lisp/autoload.el update-directory-autoloads): Fix typo in previous.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/autoload.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 98b05a382aa..33f50b341ba 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -868,7 +868,7 @@ write its autoloads into the specified file instead."
(let ((no-autoloads-time (or last-time '(0 0 0 0))) file-time)
(dolist (file files)
(cond
- ((member (expand-file-name file) autoload-excludes nil))
+ ((member (expand-file-name file) autoload-excludes) nil)
;; Passing nil as second argument forces
;; autoload-generate-file-autoloads to look for the right
;; spot where to insert each autoloads section.