aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/bookmark.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3d608bb860b..f7bf7832488 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12010-07-13 Karl Fogel <kfogel@red-bean.com>
2
3 * bookmark.el (bookmark-show-annotation): Ensure annotations show,
4 e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
5 Patch by Thierry Volpiatto (Bug#6444).
6
12010-07-13 Chong Yidong <cyd@stupidchicken.com> 72010-07-13 Chong Yidong <cyd@stupidchicken.com>
2 8
3 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625). 9 * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index d91c3ca46ee..b0d06f4e555 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -1741,7 +1741,7 @@ if an annotation exists."
1741 ;; (insert (concat "Annotation for bookmark '" bookmark "':\n\n")) 1741 ;; (insert (concat "Annotation for bookmark '" bookmark "':\n\n"))
1742 (insert annotation) 1742 (insert annotation)
1743 (goto-char (point-min)) 1743 (goto-char (point-min))
1744 (pop-to-buffer old-buf)))))) 1744 (switch-to-buffer-other-window old-buf))))))
1745 1745
1746 1746
1747(defun bookmark-show-all-annotations () 1747(defun bookmark-show-all-annotations ()