aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-02-28 21:31:19 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-02-28 21:31:19 +0100
commit619ebc6cb1f65280f1be785b92ce699575732c74 (patch)
treed98edb94d9be93b3fd35e8b64168c79d9b244834 /lisp/mastodon-toot.el
parentb0946358c7c2b1e179ae4dc6a6620a7c8fd6c9a0 (diff)
insert spaces before argument lists for lambda
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r--lisp/mastodon-toot.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 0f3d658..7f24818 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -902,8 +902,8 @@ Buffer-local variable `mastodon-toot-previous-window-config' holds the config."
(defun mastodon-toot--mentions-to-string (mentions)
"Apply `mastodon-toot--process-local' function to each mention in MENTIONS.
Remove empty string (self) from result and joins the sequence with whitespace."
- (mapconcat (lambda(mention) mention)
- (remove "" (mapcar (lambda(x) (mastodon-toot--process-local x))
+ (mapconcat (lambda (mention) mention)
+ (remove "" (mapcar (lambda (x) (mastodon-toot--process-local x))
mentions))
" "))