aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-06-19 12:37:07 +0200
committermousebot <mousebot@riseup.net>2021-06-19 12:37:07 +0200
commitf9452225da575a8272b2880214a241b72efd5e4f (patch)
tree109095b5c942ecd028bd64d09872686133f7e7f2 /lisp/mastodon-toot.el
parentc9a80513b451ebab95eca3b4dda7e2ece6bcbbd2 (diff)
hack to ensure toot buffer bindings are always enabled.
make mastodon-toot-mode is run in mastodon-toot--compose-buffer before after-change-functions bugs. this makes mastodon-toot work properly even if mastodon-mode has not yet been run/loaded yet.
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r--lisp/mastodon-toot.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index a0f886c..d9f895c 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -516,9 +516,9 @@ If REPLY-TO-ID is provided, set the MASTODON-TOOT--REPLY-TO-ID var."
(when (not buffer-exists)
(mastodon-toot--display-docs-and-status-fields)
(mastodon-toot--setup-as-reply reply-to-user reply-to-id))
+ (mastodon-toot-mode t)
(push #'mastodon-toot--update-status-fields after-change-functions)
- (mastodon-toot--update-status-fields)
- (mastodon-toot-mode t)))
+ (mastodon-toot--update-status-fields)))
(define-minor-mode mastodon-toot-mode
"Minor mode to capture Mastodon toots."