summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/etags.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 910c320ab8f..7bf575340ec 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1036,7 +1036,8 @@ See documentation of variable `tags-file-name'."
(declare (obsolete xref-find-definitions-other-frame "25.1"))
(interactive (find-tag-interactive "Find tag other frame: "))
(let ((pop-up-frames t))
- (find-tag-other-window tagname next-p)))
+ (with-suppressed-warnings ((obsolete find-tag-other-window))
+ (find-tag-other-window tagname next-p))))
;;;###autoload
(defun find-tag-regexp (regexp &optional next-p other-window)