aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-search.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@disroot.org>2024-10-27 16:27:31 +0100
committermarty hiatt <martianhiatus@disroot.org>2024-10-27 19:26:48 +0100
commit3eedacad7afe630b0381cc66deafaede2024867b (patch)
treef38c12725767b1919b8c3fd2bcfc7d06ad1b2508 /lisp/mastodon-search.el
parent0ae090a836327baeb29373457bf4a3b547635219 (diff)
fix an eq '(4) prefix arg check
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r--lisp/mastodon-search.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index 501344b..5f1e980 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -194,7 +194,7 @@ is used for pagination."
(following (when (or following (equal current-prefix-arg '(4)))
"true"))
(type (or type
- (if (eq current-prefix-arg '(4))
+ (if (equal current-prefix-arg '(4))
"accounts" ; if FOLLOWING, must be "accounts"
(completing-read "Search type: "
mastodon-search-types nil :match))))