From: Richard M. Stallman Date: Sat, 14 May 2005 14:03:31 +0000 (+0000) Subject: (eshell-find-tag): Use with-no-warnings. X-Git-Tag: ttn-vms-21-2-B4~308 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f0fe8f11adb94129124ea6a4547632492f5d4e8;p=emacs.git (eshell-find-tag): Use with-no-warnings. --- 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'." (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)