diff options
author | John Wiegley <johnw@newartisans.com> | 2000-10-13 09:02:39 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2000-10-13 09:02:39 +0000 |
commit | 8c6b1d83116d00e27f22e501e5ac4fea9a7ba182 (patch) | |
tree | 7f624b71b8c6ec4c388bc34b92a8ebe8d2fb20e5 /lisp/eshell/esh-mode.el | |
parent | e2c06b17a94a7b06cd27b643f8d5118243f06969 (diff) | |
download | emacs-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.el | 5 |
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) |