diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-23 15:27:23 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-23 15:27:23 +0100 |
commit | 81ecff802190fc1040e331630f6648765ea7320a (patch) | |
tree | e53560cdf1ace4507e448673d2e592a928d2064d /lisp/mastodon-toot.el | |
parent | ebefa1141e0ebd2a2d217e4b5b00720d8c60530a (diff) |
use unicode star if poss for faves. --return-fave-char
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 6162f52..36d08fd 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -332,7 +332,9 @@ TYPE is a symbol, either 'favourite or 'boost." (list 'boosted-p (not boosted)) (list 'favourited-p (not faved)))) (mastodon-toot--action-success - (if boost-p "B" "F") + (if boost-p + "B" + (mastodon-tl--return-fave-char)) byline-region remove)) (message (format "%s #%s" (if boost-p msg action) id)))))) (message (format "Nothing to %s here?!?" action-string))))) |