diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-05-28 19:01:35 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-05-28 19:01:35 +0200 |
commit | b6aa12f8e0c3ce0826ce656bf789df8793d5b1e9 (patch) | |
tree | 2670f369e192b8aeb17c447fa9b59315af213bc1 | |
parent | 7d08161609f6bcb1649e35c92b86e95316918fa9 (diff) |
filter post by language fix docstring
-rw-r--r-- | lisp/mastodon-tl.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index ed6cfcc..a33be2e 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2093,9 +2093,11 @@ display of boosts." (mastodon-tl--follow-user user-handle nil nil "true")) (defun mastodon-tl--filter-user-user-posts-by-language (user-handle) - "Query for USER-HANDLE and enable notifications when they post. -This feature is experimental and for now not easily varified by -the instance API." + "Query for USER-HANDLE and filter display of their posts by language. +If they are not already followed, they will be too. +To be filtered, a post has to be marked as in the language given. +This may mean that you will not see posts that are in your +desired language if they are not marked as such (or as anything)." (interactive (list (mastodon-tl--user-handles-get "filter by language"))) (let ((langs (mastodon-tl--read-filter-langs))) |