aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authoralexjgriffith <griffitaj @gmail.com>2017-05-17 10:34:34 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-05-18 10:21:21 -0400
commit349a46befedafae39ab05598c1005f9f2c82fadf (patch)
tree7344c3118ee7ca80080f90d9c2dc7447860ea1a2 /lisp/mastodon.el
parentc0708e9338de45415c0b70019cf45ee9a5bad230 (diff)
replaced declare-function with autoload
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 9f7257e..6e3a5dc 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -32,18 +32,18 @@
;;; Code:
(declare-function discover-add-context-menu "discover")
(declare-function emojify-mode "emojify")
-(declare-function mastodon-tl--get-federated-timeline "mastodon-tl")
-(declare-function mastodon-tl--get-home-timeline "mastodon-tl")
-(declare-function mastodon-tl--get-local-timeline "mastodon-tl")
-(declare-function mastodon-tl--get-tag-timeline "mastodon-tl")
-(declare-function mastodon-tl--goto-next-toot "mastodon-tl")
-(declare-function mastodon-tl--goto-prev-toot "mastodon-tl")
-(declare-function mastodon-tl--thread "mastodon-tl")
-(declare-function mastodon-tl--update "mastodon-tl")
-(declare-function mastodon-toot--compose-buffer "mastodon-toot")
-(declare-function mastodon-toot--reply "mastodon-toot")
-(declare-function mastodon-toot--toggle-boost "mastodon-toot")
-(declare-function mastodon-toot--toggle-favourite "mastodon-toot")
+(autoload 'mastodon-tl--get-federated-timeline "mastodon-tl")
+(autoload 'mastodon-tl--get-home-timeline "mastodon-tl")
+(autoload 'mastodon-tl--get-local-timeline "mastodon-tl")
+(autoload 'mastodon-tl--get-tag-timeline "mastodon-tl")
+(autoload 'mastodon-tl--goto-next-toot "mastodon-tl")
+(autoload 'mastodon-tl--goto-prev-toot "mastodon-tl")
+(autoload 'mastodon-tl--thread "mastodon-tl")
+(autoload 'mastodon-tl--update "mastodon-tl")
+(autoload 'mastodon-toot--compose-buffer "mastodon-toot")
+(autoload 'mastodon-toot--reply "mastodon-toot")
+(autoload 'mastodon-toot--toggle-boost "mastodon-toot")
+(autoload 'mastodon-toot--toggle-favourite "mastodon-toot")
(defgroup mastodon nil
"Interface with Mastodon."