diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/etags.el | 3 |
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'." | |||
| 1036 | (declare (obsolete xref-find-definitions-other-frame "25.1")) | 1036 | (declare (obsolete xref-find-definitions-other-frame "25.1")) |
| 1037 | (interactive (find-tag-interactive "Find tag other frame: ")) | 1037 | (interactive (find-tag-interactive "Find tag other frame: ")) |
| 1038 | (let ((pop-up-frames t)) | 1038 | (let ((pop-up-frames t)) |
| 1039 | (find-tag-other-window tagname next-p))) | 1039 | (with-suppressed-warnings ((obsolete find-tag-other-window)) |
| 1040 | (find-tag-other-window tagname next-p)))) | ||
| 1040 | 1041 | ||
| 1041 | ;;;###autoload | 1042 | ;;;###autoload |
| 1042 | (defun find-tag-regexp (regexp &optional next-p other-window) | 1043 | (defun find-tag-regexp (regexp &optional next-p other-window) |