]> git.eshelyaron.com Git - emacs.git/commitdiff
(batch-update-autoloads): Call `update-directory-autoloads'.
authorJohn Paul Wallington <jpw@pobox.com>
Mon, 5 May 2003 00:25:11 +0000 (00:25 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Mon, 5 May 2003 00:25:11 +0000 (00:25 +0000)
lisp/ChangeLog
lisp/emacs-lisp/autoload.el

index 7867a56729d70b0297623eed43fb7312ab8916ba..2b1f04dbd84edacbe51da5998acc7d01773746b7 100644 (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
 
 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.
 
index 4b3a5b2dbfe2a57cf3413f94902cace35a783c7f..8c228475e4284769392194671927fdce9c3ea354 100644 (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)