diff options
author | mousebot <mousebot@riseup.net> | 2022-02-13 14:43:37 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-02-13 14:43:37 +0100 |
commit | c2db155596724b9fdbef2132811009e7d24bf86d (patch) | |
tree | 1936ca09032d325d6a5530f47b90d6e390bd014c /lisp/mastodon-toot.el | |
parent | 33d9a8cc60b74c30417e320d7fb65a06b4a05701 (diff) | |
parent | 67a9c5eb13a633c7d19e2870bda42406abb015fa (diff) |
Merge branch 'develop'
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r-- | lisp/mastodon-toot.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 3978e12..48e7d96 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -194,7 +194,10 @@ Remove MARKER if REMOVE is non-nil, otherwise add it." (unless remove (goto-char bol) (insert (format "(%s) " - (propertize marker 'face 'success))))))) + (propertize marker 'face 'success))))) + ;; leave point after the marker: + (unless remove + (mastodon-tl--goto-next-toot)))) (defun mastodon-toot--action (action callback) "Take ACTION on toot at point, then execute CALLBACK. |