diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-19 11:10:18 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-19 11:10:18 +0100 |
commit | a1e0ff1a3d8302a725d13aa6d8f35f6cf6e74249 (patch) | |
tree | 4e2170f0ea25dcb3a242803aea0e83ba4eb1db3d | |
parent | 37e9bb115ae5ea9de7d8d2bddb60659c778314fe (diff) |
filters - read prompt add space
-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 27241f5..64d22a9 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1631,7 +1631,7 @@ Prompt for a context, must be a list containting at least one of \"home\", (if (string-empty-p word) (error "You must select at least one word for a filter") (completing-read-multiple - "Contexts to filter [TAB for options]:" + "Contexts to filter [TAB for options]: " '("home" "notifications" "public" "thread") nil ; no predicate t))) ; require-match, as context is mandatory |