summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2005-06-12 12:49:00 +0000
committerEli Zaretskii <eliz@gnu.org>2005-06-12 12:49:00 +0000
commit0e659f576a0f6ee276a979b1fa382b2f1cfd580c (patch)
tree3eee036c6d339b4ef7dea2b6c5513473bd0cd18c /lisp
parenta1e8cad6ea6d8281cdbf7b70d20f5241329da14c (diff)
downloademacs-0e659f576a0f6ee276a979b1fa382b2f1cfd580c.tar.gz
emacs-0e659f576a0f6ee276a979b1fa382b2f1cfd580c.tar.bz2
emacs-0e659f576a0f6ee276a979b1fa382b2f1cfd580c.zip
Don't say we are dumping under 2 names on windows-nt and cygwin.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/loadup.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 40127c8510a..089682cb588 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2005-06-12 Eli Zaretskii <eliz@gnu.org>
+ * loadup.el: Don't say we are dumping under 2 names on windows-nt
+ and cygwin.
+
* makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH): Don't
use an old loaddefs.el, as in Makefile.in.
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 53d82323feb..f3a793b252c 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -320,7 +320,7 @@
(setq name (concat (downcase (substring name 0 (match-beginning 0)))
"-"
(substring name (match-end 0)))))
- (if (eq system-type 'ms-dos)
+ (if (memq system-type '(ms-dos windows-nt cygwin))
(message "Dumping under the name emacs")
(message "Dumping under names emacs and %s" name)))
(condition-case ()