diff options
author | mousebot <mousebot@riseup.net> | 2021-09-23 13:18:44 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-09-23 13:18:44 +0200 |
commit | d1458ad0c1bf95a685a3b9ff3e4750ce82305d7a (patch) | |
tree | 3911214f0d6f2eac1fcac8a7a956dadd41cd2fa4 | |
parent | 4499e9471c4a7ba923ef950954a9e42f9a7ed6e9 (diff) |
fix formatting of mastodon-toot-default-visibility
-rw-r--r-- | lisp/mastodon-toot.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 1f65cbf..97841b5 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -58,10 +58,11 @@ Must be one of \"public\", \"unlisted\", \"private\", or \"direct\"." :group 'mastodon-toot - :type '(choice ("public" - "unlisted" - "private" - "direct"))) + :type 'choice + :options '("public" + "unlisted" + "private" + "direct")) (defvar mastodon-toot--content-warning nil "A flag whether the toot should be marked with a content warning.") |