aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-23 23:27:35 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-23 23:27:35 -0400
commit91b99e67010d83ec6791e73c8b416e386aacbd90 (patch)
tree29584c7ea945ec9ee8d4ad9adf5a74b84686bb3d /lisp/mastodon.el
parent0185eefe088f32fe152dcee4959f86785a96ba39 (diff)
Fix some compilation errors
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index aac580f..625993b 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -31,7 +31,7 @@
;;; Code:
-(require 'mastodon-auth)
+(require 'mastodon-auth nil t)
(defgroup mastodon nil
"Interface with Mastodon."
@@ -72,7 +72,7 @@
(defun mastodon ()
"Connect Mastodon client to `mastodon-instance-url' instance."
(interactive)
- (require 'mastodon-tl)
+ (require 'mastodon-tl nil t)
(mastodon-tl--get "home"))
;;;###autoload
@@ -82,7 +82,7 @@
If USER is non-nil, insert after @ symbol to begin new toot.
If REPLY-TO-ID is non-nil, attach new toot to a conversation."
(interactive)
- (require 'mastodon-toot)
+ (require 'mastodon-toot nil t)
(progn
(switch-to-buffer-other-window (get-buffer-create "*new toot*"))
(when user