diff options
Diffstat (limited to 'lisp/version.el')
-rw-r--r-- | lisp/version.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/version.el b/lisp/version.el index e8f1ac5b964..c6d2b6ff462 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -85,7 +85,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' uses. -(or (memq system-type '(vax-vms windows-nt)) +(or (eq system-type 'windows-nt) (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) " $\n"))) |