diff options
Diffstat (limited to 'lisp/mastodon-toot.el')
-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.") |