]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-find-tag): Use with-no-warnings.
authorRichard M. Stallman <rms@gnu.org>
Sat, 14 May 2005 14:03:31 +0000 (14:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 14 May 2005 14:03:31 +0000 (14:03 +0000)
lisp/eshell/esh-mode.el

index 7b07b84563a42ff9b3e352bd9888e8f61a0c8bc2..54d4c4acb9ed7af7a72c52723ec1e73d507b2546 100644 (file)
@@ -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)