]> git.eshelyaron.com Git - emacs.git/commitdiff
"?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 21 Jul 2005 10:38:01 +0000 (10:38 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 21 Jul 2005 10:38:01 +0000 (10:38 +0000)
lisp/version.el

index 05fdde95221a96ec5a2f5430d2378f48bef876d9..9dcde773c014584bb9b1dda4004d29ad6f5fcf7a 100644 (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: