diff options
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/net/eww.el | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a6340b7fd03..9df9c5f7721 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | (eww-render): Handle `eww-use-external-browser-for-content-type'. | 5 | (eww-render): Handle `eww-use-external-browser-for-content-type'. |
| 6 | Use \\` to match beginning of string instead of ^. | 6 | Use \\` to match beginning of string instead of ^. |
| 7 | (eww-browse-with-external-browser): Provide optional URL parameter. | 7 | (eww-browse-with-external-browser): Provide optional URL parameter. |
| 8 | (eww-render): Set `eww-current-title' back to "". | ||
| 8 | 9 | ||
| 9 | * net/shr.el (shr-tag-video): Display content for video if no | 10 | * net/shr.el (shr-tag-video): Display content for video if no |
| 10 | poster is available. | 11 | poster is available. |
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 195cf4294c5..467e204b978 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -169,6 +169,7 @@ word(s) will be searched for via `eww-search-prefix'." | |||
| 169 | (data-buffer (current-buffer))) | 169 | (data-buffer (current-buffer))) |
| 170 | (unwind-protect | 170 | (unwind-protect |
| 171 | (progn | 171 | (progn |
| 172 | (setq eww-current-title "") | ||
| 172 | (cond | 173 | (cond |
| 173 | ((and eww-use-external-browser-for-content-type | 174 | ((and eww-use-external-browser-for-content-type |
| 174 | (string-match-p eww-use-external-browser-for-content-type | 175 | (string-match-p eww-use-external-browser-for-content-type |