Mercurial > emacs
changeset 62332:18090a2d479a
(eshell-find-tag): Use with-no-warnings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 14 May 2005 14:03:31 +0000 |
parents | 551071b66329 |
children | 80f8fd5fdea6 |
files | lisp/eshell/esh-mode.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/eshell/esh-mode.el Sat May 14 14:02:39 2005 +0000 +++ b/lisp/eshell/esh-mode.el Sat May 14 14:03:31 2005 +0000 @@ -517,7 +517,8 @@ (let ((inhibit-read-only t) (no-default (eobp)) (find-tag-default-function 'ignore)) - (setq tagname (car (find-tag-interactive "Find tag: "))) + (with-no-warnings + (setq tagname (car (find-tag-interactive "Find tag: ")))) (find-tag tagname next-p regexp-p))) (defun eshell-move-argument (limit func property arg)