From 2fbf4694672e8dfa53767e6e2402490fa871d824 Mon Sep 17 00:00:00 2001 From: mousebot Date: Tue, 5 Apr 2022 17:10:32 +0200 Subject: toot: missing parens in --reply booster checks --- lisp/mastodon-toot.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 1f3440c..6521b16 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -642,13 +642,13 @@ candidate ARG. IGNORED remains a mystery." (mastodon-toot--process-local booster) mentions) ;; booster is either user or in mentions: - (if (not string-match user mentions) + (if (not (string-match user mentions)) ;; user not already in mentions: (concat (mastodon-toot--process-local user) mentions) ;; user already in mentions: mentions)) - ;; no booster: + ;; ELSE no booster: (if (not (string-match user mentions)) ;; user not in mentions: (concat (mastodon-toot--process-local user) -- cgit v1.2.3