diff options
author | marty hiatt <martianhiatus@disroot.org> | 2024-10-27 16:27:31 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@disroot.org> | 2024-10-27 19:26:48 +0100 |
commit | 3eedacad7afe630b0381cc66deafaede2024867b (patch) | |
tree | f38c12725767b1919b8c3fd2bcfc7d06ad1b2508 /lisp/mastodon-search.el | |
parent | 0ae090a836327baeb29373457bf4a3b547635219 (diff) |
fix an eq '(4) prefix arg check
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r-- | lisp/mastodon-search.el | 2 |
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)))) |