diff options
author | Glenn Morris <rgm@gnu.org> | 2009-10-15 06:10:45 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-10-15 06:10:45 +0000 |
commit | af9fb32fb8d7bd45a1d6ae1aeb4121d4ff83d5d7 (patch) | |
tree | 4be1cfe792342ec59f22cf133c74f37d8b6e3e75 /lisp/w32-fns.el | |
parent | 5288ec68cd4ab1766bd23996e13585605654745e (diff) | |
download | emacs-af9fb32fb8d7bd45a1d6ae1aeb4121d4ff83d5d7.tar.gz |
(w32-batch-update-autoloads): Take autoload-make-program from the
second command-line argument.
Diffstat (limited to 'lisp/w32-fns.el')
-rw-r--r-- | lisp/w32-fns.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el index f1579a97663..5462681551c 100644 --- a/lisp/w32-fns.el +++ b/lisp/w32-fns.el @@ -490,7 +490,9 @@ 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)))) + (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))) (defun w32-append-code-lines (orig extra) |