(batch-update-autoloads): Call `update-directory-autoloads'.

This commit is contained in:
John Paul Wallington 2003-05-05 00:25:11 +00:00
parent df05087018
commit 375d5635f9
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2003-05-05 John Paul Wallington <jpw@gnu.org>
* emacs-lisp/autoload.el (batch-update-autoloads): Call
`update-directory-autoloads'.
2003-05-04 Emmanuel Briot <briot@gnat.com>
* progmodes/ada-mode.el
@ -100,7 +105,7 @@
2003-04-29 Stefan Monnier <monnier@cs.yale.edu>
* (isearch-complete1): Don't allocate unnecessarily.
* isearch.el (isearch-complete1): Don't allocate unnecessarily.
(isearch-complete-edit): Adjust to Emacs-21's new minibuffer handling.
(isearch-update-ring): Use push.

View file

@ -557,8 +557,8 @@ directory or directories specified."
;;;###autoload
(defun batch-update-autoloads ()
"Update loaddefs.el autoloads in batch mode.
Calls `update-autoloads-from-directories' on the command line arguments."
(apply 'update-autoloads-from-directories command-line-args-left)
Calls `update-directory-autoloads' on the command line arguments."
(apply 'update-directory-autoloads command-line-args-left)
(setq command-line-args-left nil))
(provide 'autoload)