changeset 64562:e54d85f535eb

"?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 21 Jul 2005 10:38:01 +0000
parents dc9ffd263776
children 3a895c8815ed
files lisp/version.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/version.el	Thu Jul 21 10:33:36 2005 +0000
+++ b/lisp/version.el	Thu Jul 21 10:38:01 2005 +0000
@@ -47,7 +47,7 @@
 
 (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 @@
 
 ;; 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: