diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-16 10:09:54 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-16 10:09:54 +0200 |
commit | c53f8c544283d7e82ce99d830defdbde16ea79f4 (patch) | |
tree | 4179cc011d8bbd82179cb6b1fe88b64926630be9 /lisp/mastodon-tl.el | |
parent | e40a7844b48e7262b51df573605e542cd621687e (diff) |
no kw arg for completing-read require-match
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index f682c50..8114705 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2174,7 +2174,7 @@ report the account for spam." (crm-separator (replace-regexp-in-string "," "|" crm-separator)) (choices (completing-read-multiple "rules [TAB for options, | to separate]: " - alist nil :match))) + alist nil t))) (mapcar (lambda (x) (alist-get x alist nil nil 'equal)) choices))) |