unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#41385: [PATCH] Show eww bookmarks buffer only if it's not empty
@ 2020-05-19  0:51 Stefan Kangas
  2020-05-19 12:34 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Kangas @ 2020-05-19  0:51 UTC (permalink / raw)
  To: 41385; +Cc: larsi

[-- Attachment #1: Type: text/plain, Size: 160 bytes --]

Severity: minor
X-Debbugs-CC: larsi@gnus.org

Please see the attached patch which fixes a minor annoyance with
eww-list-bookmarks.

Best regards,
Stefan Kangas

[-- Attachment #2: 0001-Show-eww-bookmarks-buffer-only-if-it-s-not-empty.patch --]
[-- Type: text/x-diff, Size: 1014 bytes --]

From ff5c8120955a8c0a23cafe5e0cb6821dc154f72a Mon Sep 17 00:00:00 2001
From: Stefan Kangas <stefankangas@gmail.com>
Date: Tue, 19 May 2020 02:43:16 +0200
Subject: [PATCH] Show eww bookmarks buffer only if it's not empty

* lisp/net/eww.el (eww-list-bookmarks): Don't show buffer if there
are no bookmarks.
---
 lisp/net/eww.el | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index a6c1abdbb1..f24ada6287 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -1754,8 +1754,13 @@ eww-read-bookmarks
 (defun eww-list-bookmarks ()
   "Display the bookmarks."
   (interactive)
-  (pop-to-buffer "*eww bookmarks*")
-  (eww-bookmark-prepare))
+  (let ((buf (get-buffer-create "*eww bookmarks*")) no-error)
+    (unwind-protect
+        (progn
+          (pop-to-buffer buf)
+          (eww-bookmark-prepare)
+          (setq no-error t))
+      (when (not no-error) (kill-buffer buf)))))
 
 (defun eww-bookmark-prepare ()
   (eww-read-bookmarks)
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-07-29 10:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-19  0:51 bug#41385: [PATCH] Show eww bookmarks buffer only if it's not empty Stefan Kangas
2020-05-19 12:34 ` Lars Ingebrigtsen
2020-05-20  3:44   ` Stefan Kangas
2020-06-10 15:25     ` Lars Ingebrigtsen
2020-07-17  1:24       ` Lars Ingebrigtsen
2020-07-29 10:29         ` Stefan Kangas

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).