1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

"?\ " -> "?\s".

This commit is contained in:
Juanma Barranquero 2005-07-21 10:38:01 +00:00
parent 09066a607b
commit 7d52483fd3

View file

@ -47,7 +47,7 @@ Time at which Emacs was dumped out.")
(defconst emacs-build-system (system-name))
(defun emacs-version (&optional here) "\
(defun emacs-version (&optional here) "\
Return string describing the version of Emacs that is running.
If optional argument HERE is non-nil, insert string at point.
Don't use this function in programs to choose actions according
@ -83,7 +83,7 @@ to the system configuration; look at `system-configuration' instead."
;; We put version info into the executable in the form that `ident' uses.
(or (memq system-type '(vax-vms windows-nt))
(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ? (emacs-version))
(purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version))
" $\n")))
;;Local variables: