Function: loaddefs-generate-batch
loaddefs-generate-batch is an autoloaded and byte-compiled function
defined in loaddefs-gen.el.gz.
Signature
(loaddefs-generate-batch)
Documentation
Generate loaddefs.el files in batch mode.
This scans for ;;;###autoload forms and related things.
The first element on the command line should be the (main) loaddefs.el output file, and the rest are the directories to use.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/loaddefs-gen.el.gz
;;;###autoload
(defun loaddefs-generate-batch ()
"Generate loaddefs.el files in batch mode.
This scans for ;;;###autoload forms and related things.
The first element on the command line should be the (main)
loaddefs.el output file, and the rest are the directories to
use."
(let ((args command-line-args-left))
(setq command-line-args-left nil)
(loaddefs-generate (cdr args) (expand-file-name (car args)))))