diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-15 14:05:10 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-15 14:05:10 +0200 |
commit | b86d546cbe38c3eec0516e872009f13a3f80750d (patch) | |
tree | bf6b5e2ce7a62c25665f872080cc33a2d6f3af30 /lisp/mastodon-tl.el | |
parent | 8eda8fb5fa7bcca5de083a5d9841a0942281a432 (diff) |
fix do-if-item comment: doesn't inc. tags, corrent for our use
Diffstat (limited to 'lisp/mastodon-tl.el')
-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 27375c3..e25b57c 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -299,7 +299,7 @@ than `switch-to-buffer'." "Execute BODY if we have an item at point." (declare (debug t)) `(if (and (not (mastodon-tl--profile-buffer-p)) - (not (mastodon-tl--property 'item-json))) ; includes users, hashtags + (not (mastodon-tl--property 'item-json))) ; includes users but not tags (message "Looks like there's no item at point?") ,@body)) |