aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-03-23 23:25:14 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-03-23 23:25:14 +0100
commit300d86f617f80e22a2926313f62ddbd06b992630 (patch)
treeab06adc1232e367ab80f6b24b71dd3c3efde7fd5 /lisp/mastodon-profile.el
parentf42a3aea506b5258dcf3e2b55d211d89f68a6c8a (diff)
replace hypen horiz-bars with unicode masto-tl--horiz-bar if poss
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r--lisp/mastodon-profile.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 74f9b62..7fb36ad 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -642,7 +642,7 @@ HEADERS means also fetch link headers for pagination."
(if (equal locked t)
(concat " " (mastodon-tl--symbol 'locked))
"")
- "\n ------------\n"
+ "\n " mastodon-tl--horiz-bar "\n"
;; profile note:
;; account here to enable tab-stops in profile note
(mastodon-tl--render-text note account)
@@ -662,11 +662,11 @@ HEADERS means also fetch link headers for pagination."
'profile-json account)
;; insert counts
(mastodon-tl--set-face
- (concat " ------------\n"
+ (concat " " mastodon-tl--horiz-bar "\n"
" TOOTS: " toots-count " | "
"FOLLOWERS: " followers-count " | "
"FOLLOWING: " following-count "\n"
- " ------------\n\n")
+ " " mastodon-tl--horiz-bar "\n\n")
'success)
;; insert relationship (follows)
(if followsp
@@ -682,9 +682,9 @@ HEADERS means also fetch link headers for pagination."
"") ; if no followsp we still need str-or-char-p for insert
;; insert endpoint
(mastodon-tl--set-face
- (concat " ------------\n"
+ (concat " " mastodon-tl--horiz-bar "\n"
endpoint-name "\n"
- " ------------\n")
+ " " mastodon-tl--horiz-bar "\n")
'success))
(setq mastodon-tl--update-point (point))
(mastodon-media--inline-images (point-min) (point))