aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-toot.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-10-21 14:33:33 +0200
committermousebot <mousebot@riseup.net>2021-10-21 14:33:33 +0200
commita3361877511dbb573ef470caaec78cb9595cffbc (patch)
treeb6d091fa42d0231d502bc0d62f644ed53e77f007 /lisp/mastodon-toot.el
parentcd2497074c9d44f9fe302aaf3696a79acd93ece8 (diff)
fix default-toot-visibility customize
Diffstat (limited to 'lisp/mastodon-toot.el')
-rw-r--r--lisp/mastodon-toot.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 6f2f8e4..da559ef 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -68,11 +68,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."