From: John Paul Wallington Date: Mon, 5 May 2003 00:25:11 +0000 (+0000) Subject: (batch-update-autoloads): Call `update-directory-autoloads'. X-Git-Tag: ttn-vms-21-2-B4~10321 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=375d5635f9cde369ff352c37cf2181fec213220a;p=emacs.git (batch-update-autoloads): Call `update-directory-autoloads'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7867a56729d..2b1f04dbd84 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-05-05 John Paul Wallington + + * emacs-lisp/autoload.el (batch-update-autoloads): Call + `update-directory-autoloads'. + 2003-05-04 Emmanuel Briot * progmodes/ada-mode.el @@ -100,7 +105,7 @@ 2003-04-29 Stefan Monnier - * (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. diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 4b3a5b2dbfe..8c228475e42 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -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)