aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeodor Zlatanov2008-08-27 20:49:02 +0000
committerTeodor Zlatanov2008-08-27 20:49:02 +0000
commit829e102dd08591621c4dbbc3c6e1ef1eb461bfda (patch)
tree1724d77e9789fc83e20707d8d2936c84489445dc
parent5d3351276ef2016222ad308732e640596e8a5eeb (diff)
downloademacs-829e102dd08591621c4dbbc3c6e1ef1eb461bfda.tar.gz
emacs-829e102dd08591621c4dbbc3c6e1ef1eb461bfda.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/add-log.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 719c25b1aa5..cd1a8f9f652 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -6,8 +6,8 @@
6 6
72008-08-27 Teodor Zlatanov <tzz@lifelogs.com> 72008-08-27 Teodor Zlatanov <tzz@lifelogs.com>
8 8
9 * add-log.el (change-log-next-error): Run an extra `find-file' to 9 * add-log.el (change-log-next-error): Run an extra `pop-to-buffer'
10 go to the position of interest. 10 to go to the position of interest.
11 11
122008-08-27 Tomas Abrahamsson <tab@lysator.liu.se> 122008-08-27 Tomas Abrahamsson <tab@lysator.liu.se>
13 13
diff --git a/lisp/add-log.el b/lisp/add-log.el
index 5e7fe57d63e..8ca3f108b72 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -546,7 +546,7 @@ Compatibility function for \\[next-error] invocations."
546 (change-log-goto-source) 546 (change-log-goto-source)
547 ;; go to the file itself 547 ;; go to the file itself
548 (let ((file (nth 2 change-log-find-head))) 548 (let ((file (nth 2 change-log-find-head)))
549 (when file (find-file file))))) 549 (when file (pop-to-buffer (find-file-noselect file))))))
550 550
551(defvar change-log-mode-map 551(defvar change-log-mode-map
552 (let ((map (make-sparse-keymap))) 552 (let ((map (make-sparse-keymap)))