diff options
author | Holger Dürer <me@hdurer.net> | 2021-11-06 16:23:02 +0100 |
---|---|---|
committer | Holger Dürer <me@hdurer.net> | 2021-11-06 16:23:02 +0100 |
commit | 6f0afbb8b46f3d5efa02f4f6ecd4d2a216d9bb21 (patch) | |
tree | d006391bc80495d429e18a2e57b75a8991cca833 /lisp/mastodon-inspect.el | |
parent | 65f80fd810793638beb6f146b25919bca5c21cfc (diff) |
Fix new warnings in `mastodon-inspect.el`.
Just some autoload and defvar needed to keep the compiler quiet.
Diffstat (limited to 'lisp/mastodon-inspect.el')
-rw-r--r-- | lisp/mastodon-inspect.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/mastodon-inspect.el b/lisp/mastodon-inspect.el index 4647335..57240f3 100644 --- a/lisp/mastodon-inspect.el +++ b/lisp/mastodon-inspect.el @@ -30,12 +30,15 @@ ;;; Code: (autoload 'mastodon-http--api "mastodon-http") (autoload 'mastodon-http--get-json "mastodon-http") +(autoload 'mastodon-http--get-search-json "mastodon-http") (autoload 'mastodon-media--inline-images "mastodon-media") (autoload 'mastodon-mode "mastodon") (autoload 'mastodon-tl--as-string "mastodon-tl") (autoload 'mastodon-tl--property "mastodon-tl") (autoload 'mastodon-tl--toot "mastodon-tl") +(defvar mastodon-instance-url) + (defgroup mastodon-inspect nil "Tools to help inspect toots." :prefix "mastodon-inspect-" |