about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-05 14:46:34 -0500
committerJune McEnroe <june@causal.agency>2018-12-05 14:46:34 -0500
commit2797ac8abfdfa3d89120b6781157eb8164406287 (patch)
treef626957c16686e43ea0108ee28f7f085a6afc922 /input.c
parentAdd standards needed for SASL to catgirl.1 (diff)
downloadtest-2797ac8abfdfa3d89120b6781157eb8164406287.tar.gz
test-2797ac8abfdfa3d89120b6781157eb8164406287.zip
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to '')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 7093363..a358993 100644
--- a/input.c
+++ b/input.c
@@ -25,7 +25,7 @@
 #include "chat.h"
 
 static void privmsg(struct Tag tag, bool action, const char *mesg) {
-	if (tag.id == TagStatus.id || tag.id == TagVerbose.id) return;
+	if (tag.id == TagStatus.id || tag.id == TagRaw.id) return;
 	char *line;
 	int send;
 	asprintf(
@@ -184,7 +184,7 @@ void input(struct Tag tag, char *input) {
 	}
 
 	if (!slash) {
-		if (tag.id == TagVerbose.id) {
+		if (tag.id == TagRaw.id) {
 			ircFmt("%s\r\n", input);
 		} else {
 			privmsg(tag, false, input);
0a2dab62480e&follow=1'>Fix tests for diff spansJune McEnroe 2021-01-20Avoid matching ':' in make tagsJune McEnroe 2021-01-19Prefer tag matches not preceded by [[:alnum:]]June McEnroe 2021-01-19Escape \ and / in mtags search patternsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe 2021-01-18Allow matching lexers using first input lineJune McEnroe