diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-notifications.el | 3 | ||||
-rw-r--r-- | lisp/mastodon-profile.el | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 6d48681..bb05103 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -49,7 +49,6 @@ (autoload 'mastodon-tl--toot-id "mastodon-tl.el") (defvar mastodon-tl--display-media-p) - (defvar mastodon-notifications--types-alist '(("mention" . mastodon-notifications--mention) ("follow" . mastodon-notifications--follow) @@ -210,7 +209,7 @@ (defun mastodon-notifications--status (note) "Format for a `status' NOTE. Status notifications are given when -`mastodon-tl--notify-user-posts' has been set." +`mastodon-tl--enable-notify-user-posts' has been set." (let ((id (cdr (assoc 'id note))) (status (mastodon-tl--field 'status note))) (mastodon-notifications--insert-status 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 |