Re: [nongnu] elpa/mastodon dae44dc34b 01/50: add bot icon to bot profiles. FIX #795.
Stefan Monnier <[email protected]> Sun, 09 Aug 2026 10:19:05 -0400
| Newsgroups | gmane.emacs.devel |
|---|---|
| Message-ID | <[email protected]> |
> --- a/lisp/mastodon-profile.el > +++ b/lisp/mastodon-profile.el > @@ -880,6 +880,8 @@ SKIP-PINNED means don't display pinned toots." > (propertize (concat "@" .acct) 'face 'default) > (when (eq .locked t) > (concat " " (mastodon-tl--symbol 'locked))) > + (when (eq .bot t) > + (concat " " (mastodon-tl--symbol 'bot))) > "\n " mastodon-tl--horiz-bar "\n" > ;; migration: > (when .moved Any reason you `(eq FOO t)` instead of just testing `FOO`? === Stefan