bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#6444: Patch applied.


From: Karl Fogel
Subject: bug#6444: Patch applied.
Date: Tue, 13 Jul 2010 18:10:16 -0400

I applied the patch.  I didn't include the `if' -> `when' change in this
commit, because it's extraneous to the functional change.  I'll commit
that improvement separately, afterwards.

Thanks!

  $ bzr ci -F log-message.txt
  Committing to: sftp://kfogel@bzr.savannah.gnu.org/srv/bzr/emacs/trunk/
  modified lisp/ChangeLog
  modified lisp/bookmark.el
  Committed revision 100812.
  $ 

=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog      2010-07-13 17:02:27 +0000
+++ lisp/ChangeLog      2010-07-13 22:09:07 +0000
@@ -1,3 +1,9 @@
+2010-07-13  Karl Fogel  <kfogel@red-bean.com>
+
+       * bookmark.el (bookmark-show-annotation): Ensure annotations show,
+       e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
+       Patch by Thierry Volpiatto (Bug#6444).
+
 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
 
        * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).

=== modified file 'lisp/bookmark.el'
--- lisp/bookmark.el    2010-07-10 18:52:53 +0000
+++ lisp/bookmark.el    2010-07-13 22:05:39 +0000
@@ -1741,7 +1741,7 @@
             ;; (insert (concat "Annotation for bookmark '" bookmark "':\n\n"))
             (insert annotation)
             (goto-char (point-min))
-            (pop-to-buffer old-buf))))))
+            (switch-to-buffer-other-window old-buf))))))
 
 
 (defun bookmark-show-all-annotations ()






reply via email to

[Prev in Thread] Current Thread [Next in Thread]