diff options
author | alexjgriffith <griffitaj @gmail.com> | 2017-05-17 10:34:34 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-05-18 10:21:21 -0400 |
commit | 349a46befedafae39ab05598c1005f9f2c82fadf (patch) | |
tree | 7344c3118ee7ca80080f90d9c2dc7447860ea1a2 /lisp/mastodon-client.el | |
parent | c0708e9338de45415c0b70019cf45ee9a5bad230 (diff) |
replaced declare-function with autoload
Diffstat (limited to 'lisp/mastodon-client.el')
-rw-r--r-- | lisp/mastodon-client.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el index 3a9a606..b4fcbdb 100644 --- a/lisp/mastodon-client.el +++ b/lisp/mastodon-client.el @@ -30,8 +30,8 @@ ;;; Code: (require 'plstore) -(declare-function mastodon-http--api "mastodon-http") -(declare-function mastodon-http--post "mastodon-http") +(autoload 'mastodon-http--api "mastodon-http") +(autoload 'mastodon-http--post "mastodon-http") (defcustom mastodon-client--token-file (concat user-emacs-directory "mastodon.plstore") |