aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authorHolger Dürer <me@hdurer.net>2017-05-16 21:44:10 +0100
committerJohnson Denen <johnson.denen@gmail.com>2017-05-18 10:21:21 -0400
commitc0708e9338de45415c0b70019cf45ee9a5bad230 (patch)
treeb70ac8edcc22352bbcff4cdf56710961f85c86f2 /lisp/mastodon-tl.el
parentfe8e4386eacb358df0e16dc5bd37dde4f4d6d57c (diff)
Replace uses of replace-regexp with search-forward and replace-match.
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index edefae9..72883fc 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -234,7 +234,9 @@ also render the html"
(defun mastodon-tl--timeline (toots)
"Display each toot in TOOTS."
(mapc 'mastodon-tl--toot toots)
- (replace-regexp "\n\n\n | " "\n | " nil (point-min) (point-max))
+ (goto-char (point-min))
+ (while (search-forward "\n\n\n | " nil t)
+ (replace-match "\n | "))
(mastodon-media--inline-images))
(defun mastodon-tl--get-update-function (&optional buffer)