From 5f0fe8f11adb94129124ea6a4547632492f5d4e8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 14 May 2005 14:03:31 +0000 Subject: [PATCH] (eshell-find-tag): Use with-no-warnings. --- lisp/eshell/esh-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.2