diff options
author | mousebot <mousebot@riseup.net> | 2021-10-21 14:56:26 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-21 14:56:26 +0200 |
commit | e093be6be4c6bc20d4b55279f2bbf5a3af87b9ac (patch) | |
tree | c9e4bdadaf03815d95821bbef75fc3299ad9b7c9 /lisp | |
parent | 3df45c1cd655f3c3555c47d6cfaf023ef13b6ca7 (diff) |
fix toot-default-visibility customize
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index a8b121b..f8e0f70 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -62,11 +62,11 @@ Must be one of \"public\", \"unlisted\", \"private\" (for followers-only), or \"direct\"." :group 'mastodon-toot - :type 'choice - :options '("public" - "unlisted" - "private" - "direct")) + :type '(choice + (const :tag "public" "public") + (const :tag "unlisted" "unlisted") + (const :tag "followers only" "private") + (const :tag "direct" "direct"))) (defcustom mastodon-toot--default-media-directory "~/" "The default directory when prompting for a media file to upload." |