1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-23 16:30:46 -08:00

(ebrowse-view/find-file-and-search-pattern):

Use the other-window instead of the other-frame functions when
the window is dedicated.
This commit is contained in:
Gerd Moellmann 2002-03-07 11:26:09 +00:00
parent d88c544942
commit 5bc2ca8362

View file

@ -1675,7 +1675,7 @@ specifies where to find/view the result."
(setf file (ebrowse-find-source-file file tags-file-name))
;; If current window is dedicated, use another frame.
(when (window-dedicated-p (selected-window))
(setf where 'other-frame))
(setf where 'other-window))
(cond (view
(setf ebrowse-temp-position-to-view struc
ebrowse-temp-info-to-view info)