aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Shmakov2014-11-19 18:37:18 +0100
committerLars Magne Ingebrigtsen2014-11-19 18:37:18 +0100
commit9fd6f5963b5a448f40c8e79bda60fd0b5721566b (patch)
tree9883d50a8eb9ea2b584d481ac8d09c00ab4087dd
parent8d5bfc4900dbda0425c2db780bc1bed607167d2a (diff)
downloademacs-9fd6f5963b5a448f40c8e79bda60fd0b5721566b.tar.gz
emacs-9fd6f5963b5a448f40c8e79bda60fd0b5721566b.zip
(eww-reload): Reload the page in the right buffer.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/net/eww.el3
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1194ba7aa7c..aacc5260812 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * net/eww.el (eww-history-limit): New variable. 3 * net/eww.el (eww-history-limit): New variable.
4 (eww-save-history): Use it. 4 (eww-save-history): Use it.
5 (eww-reload): Reload the page in the right buffer.
5 6
62014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org> 72014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7 8
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 83d96f50b1a..e7fab1ebddc 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -705,7 +705,8 @@ appears in a <link> or <a> tag."
705 "Reload the current page." 705 "Reload the current page."
706 (interactive) 706 (interactive)
707 (let ((url (plist-get eww-data :url))) 707 (let ((url (plist-get eww-data :url)))
708 (url-retrieve url 'eww-render (list url (point))))) 708 (url-retrieve url 'eww-render
709 (list url (point) (current-buffer)))))
709 710
710;; Form support. 711;; Form support.
711 712