diff options
author | mousebot <mousebot@riseup.net> | 2022-04-05 17:10:32 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-04-05 17:10:32 +0200 |
commit | 2fbf4694672e8dfa53767e6e2402490fa871d824 (patch) | |
tree | 2a648ddc579ddc1bdc884747c9dc964f62955160 /lisp | |
parent | 0794d93ab897a2cb8c917bb6884007b13e04a1d3 (diff) |
toot: missing parens in --reply booster checks
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-toot.el | 4 |
1 files 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) |