diff options
-rw-r--r-- | lisp/mastodon-search.el | 2 | ||||
-rw-r--r-- | lisp/mastodon.el | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el index 1af49c1..49b5367 100644 --- a/lisp/mastodon-search.el +++ b/lisp/mastodon-search.el @@ -80,7 +80,7 @@ QUERY is the string to search." ;; trending tags -(defun mastodon-search-trending-tags () +(defun mastodon-search--trending-tags () "Display a list of tags trending on your instance." (interactive) (let* ((url (mastodon-http--api "trends")) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 9400014..96faf56 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -92,6 +92,7 @@ (autoload 'mastodon-tl--get-follow-suggestions "mastodon-tl") (when (require 'lingva nil :no-error) (autoload 'mastodon-toot--translate-toot-text "mastodon-toot")) +(autoload 'mastodon-search--trending-tags "mastodon-search") (defgroup mastodon nil "Interface with Mastodon." |