diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-04-20 08:57:38 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-04-20 08:57:38 +0300 |
commit | 6cf2a23e297b8a57a70c2a1dab5aa28b73461b0b (patch) | |
tree | 9f480b8778c95c23628a69d5a70b25cc5068158a /lisp/version.el | |
parent | 539aa513944b1e780a7981f63a0cdf8d86f2303c (diff) | |
download | emacs-6cf2a23e297b8a57a70c2a1dab5aa28b73461b0b.tar.gz |
Put the '$Id:' tag into MS-Windows executable of Emacs.
lisp/version.el (top level): Put into the executable the ident-style
'$Id:' tag on windows-nt as well.
Diffstat (limited to 'lisp/version.el')
-rw-r--r-- | lisp/version.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/version.el b/lisp/version.el index 38be0e7fd57..d7fb05ea465 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -118,9 +118,8 @@ Optional argument DIR is a directory to use instead of `source-directory'." )))) ;; We put version info into the executable in the form that `ident' uses. -(or (eq system-type 'windows-nt) - (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) - " $\n"))) +(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) + " $\n")) ;; Local Variables: ;; version-control: never |