diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-02 21:28:50 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-02 21:33:52 +0200 |
commit | 718a12d2fc9c16f839735a8e238a01f3174be52e (patch) | |
tree | dbc3c7227ab81210f88a1dc556e0a3b5026d841b /lisp | |
parent | 651f9de82c65df131b3507361c62104592ffe3e6 (diff) |
comments
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-tl.el | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index ae51877..f72c6fb 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1601,14 +1601,9 @@ buffers that aren't strictly mastodon timelines." We hide replies if user explictly set the `mastodon-tl--hide-replies' or used PREFIX combination to open a timeline." - (and - ;; Only hide replies if we are in a proper timeline - (mastodon-tl--timeline-proper-p) - (or - ;; User configured to hide replies - mastodon-tl--hide-replies - ;; Timeline called with C-u prefix - (equal '(4) prefix)))) + (and (mastodon-tl--timeline-proper-p) ; Only if we are in a proper timeline + (or mastodon-tl--hide-replies ; User configured to hide replies + (equal '(4) prefix)))) ; Timeline called with C-u prefix ;;; UTILITIES |