diff options
| author | Glenn Morris | 2020-05-06 09:28:36 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-05-06 09:28:36 -0700 |
| commit | e292097f55126ca2f42404f4c5c6ec7ddb62078b (patch) | |
| tree | ee4301d67ce3f2d6e65280a0e0cc91070f0c0bcf /lisp/net | |
| parent | 29171c3a8c4dcd1f740df84c759397b6ffef68ee (diff) | |
| parent | 4b419083f92dc4b4313ae0d9991b825331c2f651 (diff) | |
| download | emacs-e292097f55126ca2f42404f4c5c6ec7ddb62078b.tar.gz emacs-e292097f55126ca2f42404f4c5c6ec7ddb62078b.zip | |
Merge from origin/emacs-27
4b419083f9 Honor search-upper-case
310112fdc7 Fix eww-follow-link on URLs with #target
# Conflicts:
# lisp/fileloop.el
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/eww.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index a4544023f61..9cf9ecea0bf 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -518,6 +518,10 @@ Currently this means either text/html or application/xhtml+xml." | |||
| 518 | (plist-put eww-data :dom document) | 518 | (plist-put eww-data :dom document) |
| 519 | (let ((inhibit-read-only t) | 519 | (let ((inhibit-read-only t) |
| 520 | (inhibit-modification-hooks t) | 520 | (inhibit-modification-hooks t) |
| 521 | ;; Possibly set by the caller, e.g., `eww-render' which | ||
| 522 | ;; preserves the old URL #target before chasing redirects. | ||
| 523 | (shr-target-id (or shr-target-id | ||
| 524 | (url-target (url-generic-parse-url url)))) | ||
| 521 | (shr-external-rendering-functions | 525 | (shr-external-rendering-functions |
| 522 | (append | 526 | (append |
| 523 | shr-external-rendering-functions | 527 | shr-external-rendering-functions |