diff options
author | mousebot <mousebot@riseup.net> | 2021-10-21 22:01:02 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-21 22:01:02 +0200 |
commit | 7ba038a8c356ff7df4885485a2f4fe69e67cfc34 (patch) | |
tree | f081e94c0602b1ed2d4774c2f09f197bbfbecc60 /lisp/mastodon.el | |
parent | 6d6c0a1c2b105e8adfdb24e6d6a2a65ebe78d1f3 (diff) | |
parent | 39bf919327a03b8e34ff28f08422b2cb6d3eab26 (diff) |
Merge branch 'develop' into imgcaching
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index a06b18d..e6a01f8 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -206,13 +206,12 @@ Use. e.g. \"%c\" for your locale's date and time format." (message "Loading Mastodon account %s on %s..." (mastodon-auth--user-acct) mastodon-instance-url)))) ;;;###autoload -(defun mastodon-toot (&optional user reply-to-id) +(defun mastodon-toot (&optional user reply-to-id reply-json) "Update instance with new toot. Content is captured in a new buffer. - 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) - (mastodon-toot--compose-buffer user reply-to-id)) + (mastodon-toot--compose-buffer user reply-to-id reply-json)) ;;;###autoload (add-hook 'mastodon-mode-hook (lambda () |