From: Lars Ingebrigtsen Date: Thu, 4 Feb 2016 05:10:49 +0000 (+1100) Subject: Fix bookmark display widths X-Git-Tag: emacs-25.0.91~96 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3311f4080b5210900e582a2836d30d5ed101f3f0;p=emacs.git 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). --- diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 6872be4edaa..a96241d69f9 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)