diff options
| author | Richard M. Stallman | 2005-05-14 14:03:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-14 14:03:31 +0000 |
| commit | 5f0fe8f11adb94129124ea6a4547632492f5d4e8 (patch) | |
| tree | e0906d99d7594d9ba2f2dacf5cb0b4204bef369e /lisp | |
| parent | 424402ec748199a71354af46c02d69d74075724c (diff) | |
| download | emacs-5f0fe8f11adb94129124ea6a4547632492f5d4e8.tar.gz emacs-5f0fe8f11adb94129124ea6a4547632492f5d4e8.zip | |
(eshell-find-tag): Use with-no-warnings.
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) |