aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Wiegley2004-05-14 01:03:03 +0000
committerJohn Wiegley2004-05-14 01:03:03 +0000
commit97dad9d378e973c5bc9d3c13cb1fb399764db6dc (patch)
tree429dd8b762436692a62c88e9a5b173d237a72039
parent533b22e2e29d955c4f0aa4265188dfe65de60ebb (diff)
downloademacs-97dad9d378e973c5bc9d3c13cb1fb399764db6dc.tar.gz
emacs-97dad9d378e973c5bc9d3c13cb1fb399764db6dc.zip
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.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/eshell/esh-test.el8
2 files changed, 10 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1d6077e9fe1..756b2abb63b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12004-05-13 John Wiegley <johnw@newartisans.com>
2
3 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
4 `recentf-mode' if this variable has been customized to t.
5
6 * eshell/esh-test.el (eshell-test): Call the function
7 `emacs-version' rather than trying to build a custom version
8 string.
9
12004-05-13 Stefan Monnier <monnier@iro.umontreal.ca> 102004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2 11
3 * net/telnet.el (telnet-mode): Use define-derived-mode. 12 * net/telnet.el (telnet-mode): Use define-derived-mode.
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 @@
167 (local-set-key [(control ?m)] 'eshell-test-goto-func) 167 (local-set-key [(control ?m)] 'eshell-test-goto-func)
168 (local-set-key [return] 'eshell-test-goto-func) 168 (local-set-key [return] 'eshell-test-goto-func)
169 169
170 (insert "Testing Eshell under " 170 (insert "Testing Eshell under " (emacs-version))
171 (format "GNU Emacs %s (%s%s)"
172 emacs-version
173 system-configuration
174 (cond ((featurep 'motif) ", Motif")
175 ((featurep 'x-toolkit) ", X toolkit")
176 (t ""))))
177 (switch-to-buffer test-buffer) 171 (switch-to-buffer test-buffer)
178 (delete-other-windows)) 172 (delete-other-windows))
179 (eshell-for funcname (sort (all-completions "eshell-test--" 173 (eshell-for funcname (sort (all-completions "eshell-test--"