diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-23 23:27:35 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-23 23:27:35 -0400 |
commit | 91b99e67010d83ec6791e73c8b416e386aacbd90 (patch) | |
tree | 29584c7ea945ec9ee8d4ad9adf5a74b84686bb3d /lisp | |
parent | 0185eefe088f32fe152dcee4959f86785a96ba39 (diff) |
Fix some compilation errors
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-auth.el | 2 | ||||
-rw-r--r-- | lisp/mastodon-client.el | 2 | ||||
-rw-r--r-- | lisp/mastodon-tl.el | 4 | ||||
-rw-r--r-- | lisp/mastodon-toot.el | 2 | ||||
-rw-r--r-- | lisp/mastodon.el | 6 |
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 |