From 718a12d2fc9c16f839735a8e238a01f3174be52e Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 2 May 2023 21:28:50 +0200 Subject: comments --- lisp/mastodon-tl.el | 11 +++-------- 1 file 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 -- cgit v1.2.3