diff options
author | mousebot <mousebot@riseup.net> | 2022-02-15 19:13:23 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-02-15 19:38:23 +0100 |
commit | 48a89e518d0a84d4b81c223c9e8cf151df619b1f (patch) | |
tree | 99396d90043399016fcc818a137b669de1fe3701 /lisp/mastodon-profile.el | |
parent | a6a9c5201e51b07af2be5e4e581c364e28108947 (diff) |
move faves count help-echo propertize into tl--byline
this means that we only do the propertizing when we are actually doing an
author byline,
docstring for add-author-bylines
it also needs renaming
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index e15a891..8388d05 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -415,7 +415,11 @@ FIELD is used to identify regions under 'account" (cdr (assoc field account))) (defun mastodon-profile--add-author-bylines (tootv) - "Convert TOOTV into a author-bylines and insert." + "Convert TOOTV into a author-bylines and insert. +Also insert their profile note. +Used to view a user's followers and those they're following, as +well as the list of suggested followers and for search results." + ;;FIXME change the name of this fun now that we've edited what it does! (let ((inhibit-read-only t)) (when (not (equal tootv '[])) (mapc (lambda (toot) |