diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/eww.el | 2 |
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 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-12-28 Juri Linkov <juri@linkov.net> | 6 | 2014-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)))) |