aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-10-15 06:10:45 +0000
committerGlenn Morris2009-10-15 06:10:45 +0000
commitaf9fb32fb8d7bd45a1d6ae1aeb4121d4ff83d5d7 (patch)
tree4be1cfe792342ec59f22cf133c74f37d8b6e3e75
parent5288ec68cd4ab1766bd23996e13585605654745e (diff)
downloademacs-af9fb32fb8d7bd45a1d6ae1aeb4121d4ff83d5d7.tar.gz
emacs-af9fb32fb8d7bd45a1d6ae1aeb4121d4ff83d5d7.zip
(w32-batch-update-autoloads): Take autoload-make-program from the
second command-line argument.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/w32-fns.el4
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a564eabfbd4..e01bc0abcaa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,14 @@
12009-10-15 Glenn Morris <rgm@gnu.org> 12009-10-15 Glenn Morris <rgm@gnu.org>
2 2
3 * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
4 from the second command-line argument.
5 * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6 ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
7 ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
8 w32-batch-update-autoloads.
9 * emacs-lisp/autoload.el (autoload-make-program): New variable.
10 (batch-update-autoloads): Handle autoload-excludes on windows-nt.
11
3 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of 12 * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
4 the headers cannot be located. Simplify, subtracting superflous 13 the headers cannot be located. Simplify, subtracting superflous
5 save-excursions. 14 save-excursions.
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,
490munge command-line arguments that include file names to a horrible mess 490munge command-line arguments that include file names to a horrible mess
491that Emacs is unable to cope with." 491that Emacs is unable to cope with."
492 (let ((generated-autoload-file 492 (let ((generated-autoload-file
493 (expand-file-name (pop command-line-args-left)))) 493 (expand-file-name (pop command-line-args-left)))
494 ;; I can only assume the same considerations may apply here...
495 (autoload-make-program (pop command-line-args-left)))
494 (batch-update-autoloads))) 496 (batch-update-autoloads)))
495 497
496(defun w32-append-code-lines (orig extra) 498(defun w32-append-code-lines (orig extra)