diff options
author | Po Lu <luangruo@yahoo.com> | 2021-12-12 21:40:17 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-12-12 21:40:17 +0800 |
commit | 2de147e93c69a3ae2c74b5264ab5c6e46598ac31 (patch) | |
tree | 90d45568a83b72f66e2246b1de64818f9e6d4a90 /lisp/loadup.el | |
parent | 87cdc6369acc7ae8537d9156e8231821e3378c9a (diff) | |
parent | 0ee1a46e6c7fa159584a9c04f5ab9bf694d6de3b (diff) | |
download | emacs-2de147e93c69a3ae2c74b5264ab5c6e46598ac31.tar.gz emacs-2de147e93c69a3ae2c74b5264ab5c6e46598ac31.tar.bz2 emacs-2de147e93c69a3ae2c74b5264ab5c6e46598ac31.zip |
Merge remote-tracking branch 'origin/master' into feature/pgtk
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 3d941f7b512..b87c0550fc5 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -562,7 +562,9 @@ lost after dumping"))) (lexical-binding nil)) (if (member tmp-dump-mode '("pdump" "pbootstrap")) (dump-emacs-portable (expand-file-name output invocation-directory)) - (dump-emacs output "temacs") + (dump-emacs output (if (eq system-type 'ms-dos) + "temacs.exe" + "temacs")) (message "%d pure bytes used" pure-bytes-used)) (setq success t)) (unless success |