diff options
author | mousebot <mousebot@riseup.net> | 2021-06-07 17:06:07 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-06-07 17:06:07 +0200 |
commit | 68c2942b4c94cc9c3c10b1b1b6d78f3ff6f43fb9 (patch) | |
tree | a051eef566feaa0b4dd3a46f72592dede024c81e /lisp/mastodon-async.el | |
parent | a32a239d7e64d46df8e76c712a2335cecf8776e9 (diff) |
fix async "local" endpoint, docstrings
Diffstat (limited to 'lisp/mastodon-async.el')
-rw-r--r-- | lisp/mastodon-async.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-async.el b/lisp/mastodon-async.el index fcc6c94..1690615 100644 --- a/lisp/mastodon-async.el +++ b/lisp/mastodon-async.el @@ -119,17 +119,17 @@ ;; apparently it the local flag does not work (mastodon-async--mastodon "public" - "local" ;"public?local=true" + "public?local=true" "local" 'mastodon-async--process-queue-local-string)) (defun mastodon-async--mastodon (endpoint timeline name filter) "Make sure that the previous async process has been closed. -Then Start an async mastodon stream at ENDPOINT filtering toots +Then start an async stream at ENDPOINT filtering toots using FILTER. -Argument TIMELINE a specific target, such as federated or home. -Argument NAME the center portion of the buffer name for *mastodon-async-buffer and *mastodon-async-queue." +TIMELINE is a specific target, such as federated or home. +NAME is the center portion of the buffer name for *mastodon-async-buffer and *mastodon-async-queue." (let ((buffer (mastodon-async--start-process endpoint filter name))) (with-current-buffer buffer |