diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-23 23:25:14 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-23 23:25:14 +0100 |
commit | 300d86f617f80e22a2926313f62ddbd06b992630 (patch) | |
tree | ab06adc1232e367ab80f6b24b71dd3c3efde7fd5 /lisp/mastodon-search.el | |
parent | f42a3aea506b5258dcf3e2b55d211d89f68a6c8a (diff) |
replace hypen horiz-bars with unicode masto-tl--horiz-bar if poss
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r-- | lisp/mastodon-search.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el index b5900c7..3555238 100644 --- a/lisp/mastodon-search.el +++ b/lisp/mastodon-search.el @@ -97,9 +97,9 @@ QUERY is the string to search." nil) ;; hashtag results: (insert (mastodon-tl--set-face - (concat "\n ------------\n" + (concat "\n " mastodon-tl--horiz-bar "\n" " TRENDING HASHTAGS\n" - " ------------\n\n") + " " mastodon-tl--horiz-bar "\n\n") 'success)) (mastodon-search--print-tags-list tags))))) @@ -135,23 +135,23 @@ QUERY is the string to search." nil) ;; user results: (insert (mastodon-tl--set-face - (concat "\n ------------\n" + (concat "\n " mastodon-tl--horiz-bar "\n" " USERS\n" - " ------------\n\n") + " " mastodon-tl--horiz-bar "\n\n") 'success)) (mastodon-search--insert-users-propertized accts :note) ;; hashtag results: (insert (mastodon-tl--set-face - (concat "\n ------------\n" + (concat "\n " mastodon-tl--horiz-bar "\n" " HASHTAGS\n" - " ------------\n\n") + " " mastodon-tl--horiz-bar "\n\n") 'success)) (mastodon-search--print-tags-list tags-list) ;; status results: (insert (mastodon-tl--set-face - (concat "\n ------------\n" + (concat "\n " mastodon-tl--horiz-bar "\n" " STATUSES\n" - " ------------\n") + " " mastodon-tl--horiz-bar "\n") 'success)) (mapc #'mastodon-tl--toot toots-list-json) (goto-char (point-min)))))) |