summaryrefslogtreecommitdiff
path: root/lisp/eshell/esh-mode.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2000-10-13 09:02:39 +0000
committerJohn Wiegley <johnw@newartisans.com>2000-10-13 09:02:39 +0000
commit8c6b1d83116d00e27f22e501e5ac4fea9a7ba182 (patch)
tree7f624b71b8c6ec4c388bc34b92a8ebe8d2fb20e5 /lisp/eshell/esh-mode.el
parente2c06b17a94a7b06cd27b643f8d5118243f06969 (diff)
downloademacs-8c6b1d83116d00e27f22e501e5ac4fea9a7ba182.tar.gz
Added better remote directory support to Eshell, as well as a few bug
fixes. See the ChangeLog.
Diffstat (limited to 'lisp/eshell/esh-mode.el')
-rw-r--r--lisp/eshell/esh-mode.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el
index 1d79c8af701..4d32da81f05 100644
--- a/lisp/eshell/esh-mode.el
+++ b/lisp/eshell/esh-mode.el
@@ -524,8 +524,9 @@ sessions, such as when using `eshell-command'.")
(interactive)
(require 'etags)
(let ((inhibit-read-only t)
- (no-default (eobp)))
- (setq tagname (find-tag-interactive "Find tag: " no-default))
+ (no-default (eobp))
+ (find-tag-default-function 'ignore))
+ (setq tagname (car (find-tag-interactive "Find tag: ")))
(find-tag tagname next-p regexp-p)))
(defun eshell-move-argument (limit func property arg)