emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 3311f40 1/3: Fix bookmark display widths


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] emacs-25 3311f40 1/3: Fix bookmark display widths
Date: Thu, 04 Feb 2016 05:50:00 +0000

branch: emacs-25
commit 3311f4080b5210900e582a2836d30d5ed101f3f0
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fix bookmark display widths
    
    * lisp/net/eww.el (eww-list-bookmarks): Pop to the buffer before
    preparing it so that the widths are computed correctly (bug#22328).
---
 lisp/net/eww.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 6872be4..a96241d 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -1542,8 +1542,8 @@ If CHARSET is nil then use UTF-8."
 (defun eww-list-bookmarks ()
   "Display the bookmarks."
   (interactive)
-  (eww-bookmark-prepare)
-  (pop-to-buffer "*eww bookmarks*"))
+  (pop-to-buffer "*eww bookmarks*")
+  (eww-bookmark-prepare))
 
 (defun eww-bookmark-prepare ()
   (eww-read-bookmarks)



reply via email to

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