summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2011-09-14 11:14:34 -0400
committerChong Yidong <cyd@stupidchicken.com>2011-09-14 11:14:34 -0400
commit17bb0a2d8363621ce5b5c3fe16dc35b85ac9d455 (patch)
tree1933beb8bfb9185e11963374ff684e6584fc39ba /lisp/replace.el
parenta0bf2bcd9305d97dcfa1a06d0d7174e3061da8e8 (diff)
downloademacs-17bb0a2d8363621ce5b5c3fe16dc35b85ac9d455.tar.gz
* replace.el (occur-mode-goto-occurrence): Don't force using other window.
Fixes: debbugs:9499
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index ee430fd9855..70175cf205c 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -940,7 +940,7 @@ To return to ordinary Occur mode, use \\[occur-mode]."
(save-excursion
(goto-char (posn-point (event-end event)))
(occur-mode-find-occurrence))))))
- (pop-to-buffer (marker-buffer pos) t)
+ (pop-to-buffer (marker-buffer pos))
(goto-char pos)
(run-hooks 'occur-mode-find-occurrence-hook)))