aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Shmakov2014-12-28 14:54:46 +0100
committerLars Ingebrigtsen2014-12-28 14:54:46 +0100
commit28a584d0e930a2f19dc4f09c9dfb85d9dac24587 (patch)
treed50954a3760c948e64ccec84e255d2e4f666581f
parente092accb6bb8aea08dab1796d707b3adce55a38c (diff)
downloademacs-28a584d0e930a2f19dc4f09c9dfb85d9dac24587.tar.gz
emacs-28a584d0e930a2f19dc4f09c9dfb85d9dac24587.zip
Fix eww typo in "up" handling
Fixes: debbugs:19445 * lisp/net/eww.el (eww-handle-link): Fix typo in "up" rel handling.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/eww.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bfe2dfb6f2e..4f0f9ba73f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-12-28 Ivan Shmakov <ivan@siamics.net>
2
3 * net/eww.el (eww-handle-link): Fix typo in "up" rel handling
4 (bug#19445).
5
12014-12-28 Juri Linkov <juri@linkov.net> 62014-12-28 Juri Linkov <juri@linkov.net>
2 7
3 * vc/compare-w.el: Require diff-mode for diff faces. 8 * vc/compare-w.el: Require diff-mode for diff faces.
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index c6d3bbceda2..9d787d34f49 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -445,7 +445,7 @@ See the `eww-search-prefix' variable for the search engine used."
445 ("start" . :start) 445 ("start" . :start)
446 ("home" . :home) 446 ("home" . :home)
447 ("contents" . :contents) 447 ("contents" . :contents)
448 ("up" . up))))) 448 ("up" . :up)))))
449 (and href 449 (and href
450 where 450 where
451 (plist-put eww-data (cdr where) href)))) 451 (plist-put eww-data (cdr where) href))))