aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-12-19 14:18:26 +0000
committerEli Zaretskii1999-12-19 14:18:26 +0000
commitbd6a2462d26cc666d143c7b4bc1ba2a4ba1b080b (patch)
tree1bdf13343f36e48ceaf05bf4fdfff9bc351fd6e2
parent9e6985ed7adbf77e78d66bd89557ceb9c2aa343d (diff)
downloademacs-bd6a2462d26cc666d143c7b4bc1ba2a4ba1b080b.tar.gz
emacs-bd6a2462d26cc666d143c7b4bc1ba2a4ba1b080b.zip
Put the version info into binary on MS-DOS as well.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/version.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 744e6339332..34221b992b5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
11999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * version.el: Put the version info into binary on MS-DOS as well.
4
11999-12-19 Gerd Moellmann <gerd@gnu.org> 51999-12-19 Gerd Moellmann <gerd@gnu.org>
2 6
3 * emacs-lisp/debug.el (debugger-continue): Don't continue if 7 * emacs-lisp/debug.el (debugger-continue): Don't continue if
diff --git a/lisp/version.el b/lisp/version.el
index d6591c6bdfb..1c86b576981 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -71,7 +71,7 @@ to the system configuration; look at `system-configuration' instead."
71(defalias 'version 'emacs-version) 71(defalias 'version 'emacs-version)
72 72
73;;; We put version info into the executable in the form that ident(1) uses. 73;;; We put version info into the executable in the form that ident(1) uses.
74(or (memq system-type '(vax-vms windows-nt ms-dos)) 74(or (memq system-type '(vax-vms windows-nt))
75 (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ? (emacs-version)) 75 (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ? (emacs-version))
76 " $\n"))) 76 " $\n")))
77 77