mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix warning about obsolete func calling obsolete func in etags.el
* lisp/progmodes/etags.el (find-tag-other-frame): Don't give a warning about an obsolete function calling another obsolete function.
This commit is contained in:
parent
9645b5752a
commit
982af7f516
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue