diff options
author | Jim Blandy <jimb@redhat.com> | 1992-05-18 08:14:41 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-05-18 08:14:41 +0000 |
commit | ffd56f97cf56501f7a6981c184192e9043e4eafd (patch) | |
tree | d463f4585c85fa76b33d3663271bbb4126d7b116 /lisp/emacs-lisp | |
parent | 502ddf238f0ed280a301426804b2ed16ec1c49cc (diff) | |
download | emacs-ffd56f97cf56501f7a6981c184192e9043e4eafd.tar.gz emacs-ffd56f97cf56501f7a6981c184192e9043e4eafd.tar.bz2 emacs-ffd56f97cf56501f7a6981c184192e9043e4eafd.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 0a7c9dc74c7..5e78798c05e 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -1,5 +1,5 @@ ;;; Maintain autoloads in loaddefs.el. -;;; Copyright (C) 1991 Free Software Foundation, Inc. +;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. ;;; Written by Roland McGrath. ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -267,7 +267,7 @@ file \"%s\") doesn't exist. Remove its autoload section? " Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads] on directories. Must be used only with -batch, and kills Emacs on completion. Each file will be processed even if an error occurred previously. -For example, invoke \"emacs -batch -f batch-byte-compile *.el\"" +For example, invoke \"emacs -batch -f batch-update-autoloads *.el\"" (if (not noninteractive) (error "batch-update-file-autoloads is to be used only with -batch")) (let ((lost nil) @@ -288,3 +288,4 @@ For example, invoke \"emacs -batch -f batch-byte-compile *.el\"" (kill-emacs (if lost 1 0)))) (provide 'autoload) + |