]> git.eshelyaron.com Git - emacs.git/commitdiff
Exclude radio buttons when suggesting URI in eww
authorVisuwesh <visuweshm@gmail.com>
Sun, 3 Jul 2022 13:29:44 +0000 (15:29 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 4 Jul 2022 10:14:57 +0000 (12:14 +0200)
* lisp/net/eww.el (eww-links-at-point): Exclude radio links.
(bug#56366).

lisp/net/eww.el

index 3c16942e7c01caac4a936183feea3a998faee727..1671e062b25d094cc8caec6152b3f4c6b2573795 100644 (file)
@@ -932,9 +932,9 @@ The renaming scheme is performed in accordance with
 
 (defun eww-links-at-point ()
   "Return list of URIs, if any, linked at point."
-  (remq nil
-       (list (get-text-property (point) 'shr-url)
-             (get-text-property (point) 'image-url))))
+  (seq-filter #'stringp
+             (list (get-text-property (point) 'shr-url)
+                   (get-text-property (point) 'image-url))))
 
 (defun eww-view-source ()
   "View the HTML source code of the current page."