aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2002-03-07 11:26:09 +0000
committerGerd Moellmann2002-03-07 11:26:09 +0000
commit5bc2ca836272fd5db7ff407d57a0268801d58bde (patch)
treeac8096738e7dbf5a0504e10d20d7309351709891
parentd88c544942eb79f8ed3bfdeb589d3b8fcbda4018 (diff)
downloademacs-5bc2ca836272fd5db7ff407d57a0268801d58bde.tar.gz
emacs-5bc2ca836272fd5db7ff407d57a0268801d58bde.zip
(ebrowse-view/find-file-and-search-pattern):
Use the other-window instead of the other-frame functions when the window is dedicated.
-rw-r--r--lisp/progmodes/ebrowse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el
index b5799b368b4..5d191d86082 100644
--- a/lisp/progmodes/ebrowse.el
+++ b/lisp/progmodes/ebrowse.el
@@ -1675,7 +1675,7 @@ specifies where to find/view the result."
1675 (setf file (ebrowse-find-source-file file tags-file-name)) 1675 (setf file (ebrowse-find-source-file file tags-file-name))
1676 ;; If current window is dedicated, use another frame. 1676 ;; If current window is dedicated, use another frame.
1677 (when (window-dedicated-p (selected-window)) 1677 (when (window-dedicated-p (selected-window))
1678 (setf where 'other-frame)) 1678 (setf where 'other-window))
1679 (cond (view 1679 (cond (view
1680 (setf ebrowse-temp-position-to-view struc 1680 (setf ebrowse-temp-position-to-view struc
1681 ebrowse-temp-info-to-view info) 1681 ebrowse-temp-info-to-view info)