diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-09-18 11:33:52 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-09-18 11:33:52 +0200 |
commit | e5048d8dc7ddd604b60821583423fd3689b6af58 (patch) | |
tree | e3faaaabcfc5df1a6ffde1638626adf17d56bed9 | |
parent | a4b2d0d7fb2fbfed68e80fabaa45aed398aefb4e (diff) |
revert an eq call to equal
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 167e647..4058abc 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2007,7 +2007,7 @@ We hide replies if user explictly set the timeline." (and (mastodon-tl--timeline-proper-p) ; Only if we are in a proper timeline (or mastodon-tl--hide-replies ; User configured to hide replies - (eq '(4) prefix)))) ; Timeline called with C-u prefix + (equal '(4) prefix)))) ; Timeline called with C-u prefix ;;; UTILITIES |