about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-06 22:51:15 -0400
committerJune McEnroe <june@causal.agency>2020-07-06 22:51:15 -0400
commitd74ec7e0f301bbac9f7271d961846445c6a88d75 (patch)
treed74c2f07cd1b2f5dad89394e799b089022effd43
parentAdd message to ignore patterns (diff)
downloadcatgirl-d74ec7e0f301bbac9f7271d961846445c6a88d75.tar.gz
catgirl-d74ec7e0f301bbac9f7271d961846445c6a88d75.zip
Avoid copying message to match if no ignores are set
Diffstat (limited to '')
-rw-r--r--ignore.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ignore.c b/ignore.c
index f91b089..7fecb16 100644
--- a/ignore.c
+++ b/ignore.c
@@ -72,6 +72,7 @@ bool ignoreRemove(const char *pattern) {
 }
 
 enum Heat ignoreCheck(enum Heat heat, uint id, const struct Message *msg) {
+	if (!ignore.len) return heat;
 	char match[512];
 	snprintf(
 		match, sizeof(match), "%s!%s@%s %s %s %s",
r-highlight'> 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such. 2021-02-06Add xterm output to schemeJune McEnroe