diff options
| author | Juanma Barranquero | 2005-07-21 10:38:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-21 10:38:01 +0000 |
| commit | 7d52483fd3909d8a169abf988a011815cf7e528a (patch) | |
| tree | d14df7bbbcdc3726aed9418dde516f499781abf0 | |
| parent | 09066a607b88a394708ef9a97b4073478101b62f (diff) | |
| download | emacs-7d52483fd3909d8a169abf988a011815cf7e528a.tar.gz emacs-7d52483fd3909d8a169abf988a011815cf7e528a.zip | |
"?\ " -> "?\s".
| -rw-r--r-- | lisp/version.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/version.el b/lisp/version.el index 05fdde95221..9dcde773c01 100644 --- a/lisp/version.el +++ b/lisp/version.el | |||
| @@ -47,7 +47,7 @@ Time at which Emacs was dumped out.") | |||
| 47 | 47 | ||
| 48 | (defconst emacs-build-system (system-name)) | 48 | (defconst emacs-build-system (system-name)) |
| 49 | 49 | ||
| 50 | (defun emacs-version (&optional here) "\ | 50 | (defun emacs-version (&optional here) "\ |
| 51 | Return string describing the version of Emacs that is running. | 51 | Return string describing the version of Emacs that is running. |
| 52 | If optional argument HERE is non-nil, insert string at point. | 52 | If optional argument HERE is non-nil, insert string at point. |
| 53 | Don't use this function in programs to choose actions according | 53 | Don't use this function in programs to choose actions according |
| @@ -83,7 +83,7 @@ to the system configuration; look at `system-configuration' instead." | |||
| 83 | 83 | ||
| 84 | ;; We put version info into the executable in the form that `ident' uses. | 84 | ;; We put version info into the executable in the form that `ident' uses. |
| 85 | (or (memq system-type '(vax-vms windows-nt)) | 85 | (or (memq system-type '(vax-vms windows-nt)) |
| 86 | (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ? (emacs-version)) | 86 | (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) |
| 87 | " $\n"))) | 87 | " $\n"))) |
| 88 | 88 | ||
| 89 | ;;Local variables: | 89 | ;;Local variables: |