diff options
author | marty hiatt <martianhiatus@disroot.org> | 2024-10-29 10:09:02 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@disroot.org> | 2024-10-29 10:09:02 +0100 |
commit | 1679216a14ba33ac7b5e16b9784d968da6bd63fe (patch) | |
tree | de9967d05153ef88f1029ba87dc921c19e60838c /lisp/mastodon-transient.el | |
parent | c55233b45cbbe0d465f3928f185e5d41be5f078f (diff) |
poll: choice add: uncomment max poll opts check
Diffstat (limited to 'lisp/mastodon-transient.el')
-rw-r--r-- | lisp/mastodon-transient.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-transient.el b/lisp/mastodon-transient.el index 4d6fb2c..bb92f56 100644 --- a/lisp/mastodon-transient.el +++ b/lisp/mastodon-transient.el @@ -251,8 +251,8 @@ the format fields.X.keyname." (7 'seven) (8 'eight) (9 'nine)))) - (if (or ;(>= choice-count (mastodon-transient-max-poll-opts)) - (= choice-count 9)) + (if (or (>= choice-count (mastodon-transient-max-poll-opts)) + (= choice-count 9)) ;; FIXME when we hit '10', we get a binding clash with '1'. :/ (message "Max choices reached") (transient-append-suffix |