aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/mastodon-auth.el2
-rw-r--r--lisp/mastodon-client.el2
-rw-r--r--lisp/mastodon-tl.el4
-rw-r--r--lisp/mastodon-toot.el2
-rw-r--r--lisp/mastodon.el6
5 files changed, 8 insertions, 8 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index 6250659..6ec4fb4 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -29,7 +29,7 @@
;;; Code:
(require 'plstore)
-(require 'mastodon-client)
+(require 'mastodon-client nil t)
(defgroup mastodon-auth nil
"Authenticate with Mastodon."
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el
index e542129..4a338ea 100644
--- a/lisp/mastodon-client.el
+++ b/lisp/mastodon-client.el
@@ -29,7 +29,7 @@
;;; Code:
(require 'plstore)
-(require 'mastodon-http)
+(require 'mastodon-http nil t)
(defgroup mastodon-client nil
"Register your client with Mastodon."
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 18c7b64..aabf083 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -28,8 +28,8 @@
;;; Code:
-(require 'mastodon-http)
-(require 'mastodon-toot)
+(require 'mastodon-http nil t)
+(require 'mastodon-toot nil t)
(defgroup mastodon-tl nil
"Timelines in Mastodon."
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 3e865b3..50be7b7 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -28,7 +28,7 @@
;;; Code:
-(require 'mastodon-auth)
+(require 'mastodon-auth nil t)
(defgroup mastodon-toot nil
"Capture Mastodon toots."
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