branch: elpa/mastodon
commit 978e075980e5d6a86456bf143adc20dc444a90a0
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>
toot.el: fix format toot command listing using single - cmds
---
lisp/mastodon-toot.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index c4ea517785..b1dcdedda5 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -1618,7 +1618,7 @@ With RESCHEDULE, reschedule the scheduled toot at point
without editing."
"Format CMD to be more readable.
e.g. `mastodon-toot-send' -> Send."
(let* ((str (symbol-name cmd))
- (re "--\\(.*\\)$")
+ (re "mastodon-toot-\\(.*\\)$")
(str2 (save-match-data
(string-match re str)
(match-string 1 str))))