diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/bookmark.el | 2 |
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 @@ | |||
| 1 | 2010-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 | |||
| 1 | 2010-07-13 Chong Yidong <cyd@stupidchicken.com> | 7 | 2010-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 () |