Function: w32-batch-update-autoloads
w32-batch-update-autoloads is a byte-compiled function defined in
w32-fns.el.gz.
Signature
(w32-batch-update-autoloads)
Documentation
Like batch-update-autoloads, but takes the name of the autoloads file
from the command line.
This is required because some Windows build environments, such as MSYS, munge command-line arguments that include file names to a horrible mess that Emacs is unable to cope with.
Source Code
;; Defined in /usr/src/emacs/lisp/w32-fns.el.gz
(defun w32-batch-update-autoloads ()
"Like `batch-update-autoloads', but takes the name of the autoloads file
from the command line.
This is required because some Windows build environments, such as MSYS,
munge command-line arguments that include file names to a horrible mess
that Emacs is unable to cope with."
(let ((generated-autoload-file
(expand-file-name (pop command-line-args-left)))
;; I can only assume the same considerations may apply here...
(autoload-make-program (pop command-line-args-left)))
(batch-update-autoloads)))