aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/replace.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7d25566c12e..88004d84047 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12005-11-28 Chong Yidong <cyd@stupidchicken.com>
2
3 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
4
12005-11-28 Stefan Monnier <monnier@iro.umontreal.ca> 52005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * textmodes/flyspell.el (flyspell-last-buffer): New var. 7 * textmodes/flyspell.el (flyspell-last-buffer): New var.
diff --git a/lisp/replace.el b/lisp/replace.el
index e74b8690c28..f269baef9f1 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -770,7 +770,7 @@ Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
770 "Go to the occurrence the current line describes." 770 "Go to the occurrence the current line describes."
771 (interactive) 771 (interactive)
772 (let ((pos (occur-mode-find-occurrence))) 772 (let ((pos (occur-mode-find-occurrence)))
773 (switch-to-buffer (marker-buffer pos)) 773 (pop-to-buffer (marker-buffer pos))
774 (goto-char pos))) 774 (goto-char pos)))
775 775
776(defun occur-mode-goto-occurrence-other-window () 776(defun occur-mode-goto-occurrence-other-window ()