From: Eli Zaretskii Date: Sun, 19 Dec 1999 14:18:26 +0000 (+0000) Subject: Put the version info into binary on MS-DOS as well. X-Git-Tag: emacs-pretest-21.0.90~5665 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd6a2462d26cc666d143c7b4bc1ba2a4ba1b080b;p=emacs.git Put the version info into binary on MS-DOS as well. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 744e6339332..34221b992b5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +1999-12-19 Eli Zaretskii + + * version.el: Put the version info into binary on MS-DOS as well. + 1999-12-19 Gerd Moellmann * 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." (defalias 'version 'emacs-version) ;;; We put version info into the executable in the form that ident(1) uses. -(or (memq system-type '(vax-vms windows-nt ms-dos)) +(or (memq system-type '(vax-vms windows-nt)) (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ? (emacs-version)) " $\n")))