Mercurial > hg > xemacs-beta
comparison lisp/version.el @ 440:8de8e3f6228a r21-2-28
Import from CVS: tag r21-2-28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:33:38 +0200 |
parents | 3ecd8885ac67 |
children | 576fb035e263 |
comparison
equal
deleted
inserted
replaced
439:357dd071b03c | 440:8de8e3f6228a |
---|---|
129 | 129 |
130 ;; Put the emacs version number into the `pure[]' array in a form that | 130 ;; Put the emacs version number into the `pure[]' array in a form that |
131 ;; `what(1)' can extract from the executable or a core file. We don't | 131 ;; `what(1)' can extract from the executable or a core file. We don't |
132 ;; actually need this to be pointed to from lisp; pure objects can't | 132 ;; actually need this to be pointed to from lisp; pure objects can't |
133 ;; be GCed. | 133 ;; be GCed. |
134 (or (memq system-type '(windows-nt ms-dos)) | 134 (purecopy (concat "\n@" "(#)" (emacs-version) |
135 (purecopy (concat "\n@" "(#)" (emacs-version) | 135 "\n@" "(#)" "Configuration: " |
136 "\n@" "(#)" "Configuration: " | 136 system-configuration "\n")) |
137 system-configuration "\n"))) | |
138 | 137 |
139 ;;Local variables: | 138 ;;Local variables: |
140 ;;version-control: never | 139 ;;version-control: never |
141 ;;End: | 140 ;;End: |
142 | 141 |