diff options
author | mousebot <mousebot@riseup.net> | 2021-12-23 13:30:22 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-12-23 13:30:22 +0100 |
commit | ab37e43c60edf5f0d591441e8cece61a27dd2a6d (patch) | |
tree | 7ecadbe9e912a8136a2db52851100f1bd1a1af03 /lisp/mastodon-profile.el | |
parent | 528372ab3751b7ee4bd41f9bd2658abaa093fe20 (diff) |
tiny ediff clean up 2.
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index c7ef718..05cacde 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -62,7 +62,6 @@ (defvar mastodon-tl--buffer-spec) (defvar mastodon-tl--update-point) - (defvar-local mastodon-profile--account nil "The data for the account being described in the current profile buffer.") @@ -475,8 +474,8 @@ If the handle does not match a search return then retun NIL." These include the author, author of reblogged entries and any user mentioned." (when status (let ((this-account (alist-get 'account status)) - (mentions (alist-get 'mentions status)) - (reblog (alist-get 'reblog status))) + (mentions (alist-get 'mentions status)) + (reblog (alist-get 'reblog status))) (seq-filter 'stringp (seq-uniq |