aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index b75c608..a0dd732 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -73,6 +73,9 @@ Use. e.g. \"%c\" for your locale's date and time format."
(defvar mastodon--api-version "v1")
+(defvar mastodon-buffer-spec nil
+ "A unique identifier and functions for each Mastodon buffer.")
+
(defcustom mastodon-mode-hook nil
"Hook run when entering Mastodon mode."
:type 'hook
@@ -104,7 +107,7 @@ Use. e.g. \"%c\" for your locale's date and time format."
"Connect Mastodon client to `mastodon-instance-url' instance."
(interactive)
(require 'mastodon-tl nil t)
- (mastodon-tl--get "home"))
+ (mastodon-tl--get-home-timeline))
;;;###autoload
(defun mastodon-toot (&optional user reply-to-id)