diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-03 04:54:17 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2013-12-03 04:54:17 +0000 |
commit | 39fa32d6359c8292dd91ce1c58da1aa3f8668bd8 (patch) | |
tree | 327eff527ac68428946a870737a073423ef4e624 /lisp | |
parent | 25636e136267379f6b32b8dff712f72438cbec35 (diff) | |
download | emacs-39fa32d6359c8292dd91ce1c58da1aa3f8668bd8.tar.gz |
lisp/net/eww.el (eww-render): Don't pass arg to eww-display-image
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 42802fd43f4..610ac93b035 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org> + + * net/eww.el (eww-render): Don't pass arg to eww-display-image. + 2013-12-03 Juri Linkov <juri@jurta.org> * progmodes/compile.el (compilation-start): Rename window alist diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 461236f04f6..6c6ef8a20aa 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -197,7 +197,7 @@ word(s) will be searched for via `eww-search-prefix'." ((equal (car content-type) "text/html") (eww-display-html charset url nil point)) ((string-match-p "\\`image/" (car content-type)) - (eww-display-image url) + (eww-display-image) (eww-update-header-line-format)) (t (eww-display-raw) |