diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-26 15:16:16 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-26 15:16:16 +0200 |
commit | fde23c6e7426b96de0989e25d5a565652c995ca4 (patch) | |
tree | 0710a5702dbb4c73a9ec5e43282ed3af27a5f05f /lisp/net/eww.el | |
parent | 4feeb7570df33ac335049296d62dba5e05031747 (diff) | |
download | emacs-fde23c6e7426b96de0989e25d5a565652c995ca4.tar.gz emacs-fde23c6e7426b96de0989e25d5a565652c995ca4.tar.bz2 emacs-fde23c6e7426b96de0989e25d5a565652c995ca4.zip |
Fix (thing-at-point 'url) in eww forms
* lisp/net/eww.el (eww-tag-input): Don't claim to have an URL here
(bug#58091).
* lisp/net/shr.el (shr-next-link, shr-previous-link): Search for
shr-tab-stop instead of shr-url so that we can be more general.
(shr-urlify): Mark all links as tabbable-to.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 2a511333de1..61b1b750683 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -1629,7 +1629,7 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.") (unless (= start (point)) (put-text-property start (1+ start) 'help-echo "Input field") ;; Mark this as an element we can TAB to. - (put-text-property start (1+ start) 'shr-url dom)))) + (put-text-property start (1+ start) 'shr-tab-stop t)))) (defun eww-tag-select (dom) (shr-ensure-paragraph) |