diff options
author | John Wiegley <johnw@newartisans.com> | 2004-05-14 01:03:03 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-05-14 01:03:03 +0000 |
commit | 97dad9d378e973c5bc9d3c13cb1fb399764db6dc (patch) | |
tree | 429dd8b762436692a62c88e9a5b173d237a72039 /lisp/eshell | |
parent | 533b22e2e29d955c4f0aa4265188dfe65de60ebb (diff) | |
download | emacs-97dad9d378e973c5bc9d3c13cb1fb399764db6dc.tar.gz |
2004-05-13 John Wiegley <johnw@newartisans.com>
* eshell/esh-test.el (eshell-test): Call the function
`emacs-version' rather than trying to build a custom version
string.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-test.el | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lisp/eshell/esh-test.el b/lisp/eshell/esh-test.el index 54edf5e35ab..076505da14e 100644 --- a/lisp/eshell/esh-test.el +++ b/lisp/eshell/esh-test.el @@ -167,13 +167,7 @@ (local-set-key [(control ?m)] 'eshell-test-goto-func) (local-set-key [return] 'eshell-test-goto-func) - (insert "Testing Eshell under " - (format "GNU Emacs %s (%s%s)" - emacs-version - system-configuration - (cond ((featurep 'motif) ", Motif") - ((featurep 'x-toolkit) ", X toolkit") - (t "")))) + (insert "Testing Eshell under " (emacs-version)) (switch-to-buffer test-buffer) (delete-other-windows)) (eshell-for funcname (sort (all-completions "eshell-test--" |