diff options
author | marty hiatt <martianhiatus@disroot.org> | 2024-10-29 11:21:18 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@disroot.org> | 2024-10-29 11:21:18 +0100 |
commit | 77f4c2770dd7f8e5a3c276ff8e89f465ade2411d (patch) | |
tree | 3b3e10b46c02d7ecc077cb1635432aac20becdda /lisp/mastodon-profile.el | |
parent | d71b8f29852a2b00228eb1d673d1ad43a52812a6 (diff) |
after widgets added: newline before pinned statuses
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index b4a8d4f..c16d88d 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -614,7 +614,7 @@ FIELDS means provide a fields vector fetched by other means." "Insert each of the PINNED-STATUSES for a given account." (mapc (lambda (pinned-status) (insert - (concat " " + (concat "\n " (propertize " pinned " 'face '(:inherit success :box t)) " ")) |