diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/eshell/esh-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 7b07b84563a..54d4c4acb9e 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -517,7 +517,8 @@ This is used by `eshell-watch-for-password-prompt'." | |||
| 517 | (let ((inhibit-read-only t) | 517 | (let ((inhibit-read-only t) |
| 518 | (no-default (eobp)) | 518 | (no-default (eobp)) |
| 519 | (find-tag-default-function 'ignore)) | 519 | (find-tag-default-function 'ignore)) |
| 520 | (setq tagname (car (find-tag-interactive "Find tag: "))) | 520 | (with-no-warnings |
| 521 | (setq tagname (car (find-tag-interactive "Find tag: ")))) | ||
| 521 | (find-tag tagname next-p regexp-p))) | 522 | (find-tag tagname next-p regexp-p))) |
| 522 | 523 | ||
| 523 | (defun eshell-move-argument (limit func property arg) | 524 | (defun eshell-move-argument (limit func property arg) |