diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-30 10:23:43 +1100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-12-30 10:23:43 +1100 |
commit | 47eaa7a194fa38bc39c45fbd5e3f86a01d78755f (patch) | |
tree | efe8ab0313f5e325a5043889461a5e4ef685beb2 /lisp/mastodon-toot.el | |
parent | 101e2c7ee74bfa1df6bb3d31a9daeca6a0a75243 (diff) |
docstrings
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index c18f751..3406ec4 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -844,8 +844,8 @@ Buffer-local variable `mastodon-toot-previous-window-config' holds the config." (goto-char (cadr config))) (defun mastodon-toot--mentions-to-string (mentions) - "Applies mastodon-toot--process-local function to each mention, -removes empty string (self) from result and joins the sequence with whitespace \" \"." + "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)) mentions)) |