aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-25 12:03:03 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-25 12:13:30 +0100
commit83231a8e0dbce439e0d98a158291c7be9fb4525b (patch)
tree17fe6ceee279fc349ea3bf348ed711c74ae4c20f /lisp
parent143232e53d05bd42560d5ee9265bcb74245a29e2 (diff)
tweak joined date newlines printing + test
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-profile.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index fa9642e..3ba00b9 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -617,15 +617,18 @@ NO-REBLOGS means do not display boosts in statuses."
" [locked]")
"")
"\n ------------\n"
- (mastodon-tl--render-text note account)
+ ;; profile note:
;; account here to enable tab-stops in profile note
+ (mastodon-tl--render-text note account)
+ ;; meta fields:
(if fields
(concat "\n"
(mastodon-tl--set-face
(mastodon-profile--fields-insert fields)
- 'success)
- "\n")
+ 'success))
"")
+ "\n"
+ ;; Joined date:
(propertize
(mastodon-profile--format-joined-date-string joined)
'face 'success)