aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authoralexjgriffith <griffitaj @gmail.com>2017-05-05 12:53:09 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-05-05 13:01:59 -0400
commit73c15a03a9d7f799f7ab1557d3528fff916df265 (patch)
tree001fa88aadccbf1c1c0806951ff607439537ba7f /lisp/mastodon-tl.el
parentdf0341b167ba2de92dd26ef9e687026db33f524e (diff)
Merged nested lets
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index c109df5..2964942 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -191,11 +191,11 @@ also render the html"
(defun mastodon-tl--content (toot)
"Retrieve text content from TOOT."
- (let ((content (mastodon-tl--field 'content toot)))
+ (let ((content (mastodon-tl--field 'content toot))
+ (shr-use-fonts nil))
(propertize (with-temp-buffer
(insert (decode-coding-string content 'utf-8))
- (let ((shr-use-fonts nil))
- (shr-render-region (point-min) (point-max)))
+ (shr-render-region (point-min) (point-max))
(buffer-string))
'face 'default)))