diff options
| author | John Paul Wallington | 2003-05-05 00:25:11 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2003-05-05 00:25:11 +0000 |
| commit | 375d5635f9cde369ff352c37cf2181fec213220a (patch) | |
| tree | 72b4180c0f4a9a9a6dd88d021fb00a93a529bc0d | |
| parent | df05087018f21bd5053c1ee21bf1dd7a45118d85 (diff) | |
| download | emacs-375d5635f9cde369ff352c37cf2181fec213220a.tar.gz emacs-375d5635f9cde369ff352c37cf2181fec213220a.zip | |
(batch-update-autoloads): Call `update-directory-autoloads'.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7867a56729d..2b1f04dbd84 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-05-05 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/autoload.el (batch-update-autoloads): Call | ||
| 4 | `update-directory-autoloads'. | ||
| 5 | |||
| 1 | 2003-05-04 Emmanuel Briot <briot@gnat.com> | 6 | 2003-05-04 Emmanuel Briot <briot@gnat.com> |
| 2 | 7 | ||
| 3 | * progmodes/ada-mode.el | 8 | * progmodes/ada-mode.el |
| @@ -100,7 +105,7 @@ | |||
| 100 | 105 | ||
| 101 | 2003-04-29 Stefan Monnier <monnier@cs.yale.edu> | 106 | 2003-04-29 Stefan Monnier <monnier@cs.yale.edu> |
| 102 | 107 | ||
| 103 | * (isearch-complete1): Don't allocate unnecessarily. | 108 | * isearch.el (isearch-complete1): Don't allocate unnecessarily. |
| 104 | (isearch-complete-edit): Adjust to Emacs-21's new minibuffer handling. | 109 | (isearch-complete-edit): Adjust to Emacs-21's new minibuffer handling. |
| 105 | (isearch-update-ring): Use push. | 110 | (isearch-update-ring): Use push. |
| 106 | 111 | ||
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." | |||
| 557 | ;;;###autoload | 557 | ;;;###autoload |
| 558 | (defun batch-update-autoloads () | 558 | (defun batch-update-autoloads () |
| 559 | "Update loaddefs.el autoloads in batch mode. | 559 | "Update loaddefs.el autoloads in batch mode. |
| 560 | Calls `update-autoloads-from-directories' on the command line arguments." | 560 | Calls `update-directory-autoloads' on the command line arguments." |
| 561 | (apply 'update-autoloads-from-directories command-line-args-left) | 561 | (apply 'update-directory-autoloads command-line-args-left) |
| 562 | (setq command-line-args-left nil)) | 562 | (setq command-line-args-left nil)) |
| 563 | 563 | ||
| 564 | (provide 'autoload) | 564 | (provide 'autoload) |