diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2014-11-14 05:08:34 +0100 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2014-11-14 05:08:34 +0100 |
commit | f48827adbaa65fe1ef778beb7814d557ced12017 (patch) | |
tree | e8957fe04536abe167c449b7949497aea3446536 /lisp | |
parent | 7169391ddb735892a8463aa96407e0448a3820a0 (diff) | |
download | emacs-f48827adbaa65fe1ef778beb7814d557ced12017.tar.gz |
* net/eww.el (eww-render): Don't set the title to the URL.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/net/eww.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7674e78856c..7bec543fd4d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org> + + * net/eww.el (eww-render): Don't set the title to the URL. + 2014-11-13 Ulrich Müller <ulm@gentoo.org> * version.el (emacs-repository-get-version): Call `git log' diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 9462d03d54a..af11e97043e 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -238,7 +238,7 @@ word(s) will be searched for via `eww-search-prefix'." (t (eww-display-raw buffer) (eww-update-header-line-format))) - (plist-put eww-data :title url) + (plist-put eww-data :url url) (setq eww-history-position 0) (run-hooks 'eww-after-render-hook)) (kill-buffer data-buffer)))) |