diff options
author | mousebot <mousebot@riseup.net> | 2022-01-11 21:18:23 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-01-11 21:18:23 +0100 |
commit | c6b613a65bb796f89bf7b46f4dace53f97ce392f (patch) | |
tree | 6fa3b7e5b778f6af47aeab3d79b38597d14e0e4e /lisp/mastodon-notifications.el | |
parent | 1ea5edbb7cb99ad4ab192169cbf649c6e179d0cc (diff) |
byte compile warnings
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 9444658..1361099 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -48,6 +48,7 @@ (autoload 'mastodon-tl--spoiler "mastodon-tl.el") (autoload 'mastodon-tl--toot-id "mastodon-tl.el") (defvar mastodon-tl--display-media-p) +(defvar mastodon-tl--buffer-spec) (defvar mastodon-notifications--types-alist '(("mention" . mastodon-notifications--mention) @@ -174,8 +175,8 @@ Status notifications are given when (propertize (if (equal type 'follow) "Congratulations, you have a new follower!" (format "You have a follow request from... %s" - follower) - 'face 'default)) + follower)) + 'face 'default) (mastodon-tl--clean-tabs-and-nl (if (mastodon-tl--has-spoiler status) (mastodon-tl--spoiler status) |