mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
Fix eww-follow-link on URLs with #target
* lisp/net/eww.el (eww-display-html): Ensure shr-target-id is set as callers depend on this (bug#28441, bug#40532).
This commit is contained in:
parent
f5cb5bb828
commit
310112fdc7
@ -518,6 +518,10 @@ Currently this means either text/html or application/xhtml+xml."
|
||||
(plist-put eww-data :dom document)
|
||||
(let ((inhibit-read-only t)
|
||||
(inhibit-modification-hooks t)
|
||||
;; Possibly set by the caller, e.g., `eww-render' which
|
||||
;; preserves the old URL #target before chasing redirects.
|
||||
(shr-target-id (or shr-target-id
|
||||
(url-target (url-generic-parse-url url))))
|
||||
(shr-external-rendering-functions
|
||||
(append
|
||||
shr-external-rendering-functions
|
||||
|
Loading…
Reference in New Issue
Block a user