diff options
author | Ivan Shmakov <ivan@siamics.net> | 2014-12-28 14:54:46 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2014-12-28 14:54:46 +0100 |
commit | 28a584d0e930a2f19dc4f09c9dfb85d9dac24587 (patch) | |
tree | d50954a3760c948e64ccec84e255d2e4f666581f /lisp/net | |
parent | e092accb6bb8aea08dab1796d707b3adce55a38c (diff) | |
download | emacs-28a584d0e930a2f19dc4f09c9dfb85d9dac24587.tar.gz emacs-28a584d0e930a2f19dc4f09c9dfb85d9dac24587.tar.bz2 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.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." ("start" . :start) ("home" . :home) ("contents" . :contents) - ("up" . up))))) + ("up" . :up))))) (and href where (plist-put eww-data (cdr where) href)))) |