comparison lisp/emacs-lisp/bytecomp.el @ 68167:9681817a2fa5

(batch-byte-recompile-directory): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 13 Jan 2006 09:54:33 +0000
parents 8e733b93ffdc
children f60a24914ee2 de425e4eb0bc 7beb78bc1f8e
comparison
equal deleted inserted replaced
68166:51124813803b 68167:9681817a2fa5
4099 4099
4100 ;;;###autoload 4100 ;;;###autoload
4101 (defun batch-byte-recompile-directory (&optional arg) 4101 (defun batch-byte-recompile-directory (&optional arg)
4102 "Run `byte-recompile-directory' on the dirs remaining on the command line. 4102 "Run `byte-recompile-directory' on the dirs remaining on the command line.
4103 Must be used only with `-batch', and kills Emacs on completion. 4103 Must be used only with `-batch', and kills Emacs on completion.
4104 For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." 4104 For example, invoke `emacs -batch -f batch-byte-recompile-directory .'.
4105
4106 Optional argument ARG is passed as second argument ARG to
4107 `batch-recompile-directory'; see there for its possible values
4108 and corresponding effects."
4105 ;; command-line-args-left is what is left of the command line (startup.el) 4109 ;; command-line-args-left is what is left of the command line (startup.el)
4106 (defvar command-line-args-left) ;Avoid 'free variable' warning 4110 (defvar command-line-args-left) ;Avoid 'free variable' warning
4107 (if (not noninteractive) 4111 (if (not noninteractive)
4108 (error "batch-byte-recompile-directory is to be used only with -batch")) 4112 (error "batch-byte-recompile-directory is to be used only with -batch"))
4109 (or command-line-args-left 4113 (or command-line-args-left