diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-14 10:00:44 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-14 10:00:44 +0200 |
commit | 1bd34da21be4abcb310418a7db3da726efa24780 (patch) | |
tree | b7d803d99d1d5fe7083af7db26d16f95d8dc6565 /lisp/mastodon-profile.el | |
parent | 2b2d6b03ba7837f927b6c69ac44b78ac8b7789d6 (diff) |
rename search-query to query
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 95137e0..3d27bb4 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -80,7 +80,7 @@ (autoload 'mastodon-views--add-account-to-list "mastodon-views") (autoload 'mastodon-return-credential-account "mastodon") (autoload 'mastodon-tl--buffer-property "mastodon-tl") -(autoload 'mastodon-search--search-query "mastodon-search") +(autoload 'mastodon-search--query "mastodon-search") (defvar mastodon-tl--horiz-bar) (defvar mastodon-tl--update-point) @@ -223,7 +223,7 @@ NO-REBLOGS means do not display boosts in statuses." (interactive "sSearch account for: ") (let* ((ep (mastodon-tl--buffer-property 'endpoint)) (id (nth 1 (split-string ep "/")))) - (mastodon-search--search-query query "statuses" nil nil id))) + (mastodon-search--query query "statuses" nil nil id))) ;;; ACCOUNT PREFERENCES @@ -833,7 +833,7 @@ Optionally provide the ID of the account to remove." (defun mastodon-profile--remove-from-followers-list () "Select a user from your followers and remove from followers. Currently limited to 100 handles. If not found, try -`mastodon-search--search-query'." +`mastodon-search--query'." (interactive) (let* ((endpoint (format "accounts/%s/followers" (mastodon-auth--get-account-id))) |