about summary refs log tree commit diff
path: root/tag.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 /tag.c
parentAdd standards needed for SASL to catgirl.1 (diff)
downloadcatgirl-2797ac8abfdfa3d89120b6781157eb8164406287.tar.gz
catgirl-2797ac8abfdfa3d89120b6781157eb8164406287.zip
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tag.c b/tag.c
index 6cc5d41..e9b098b 100644
--- a/tag.c
+++ b/tag.c
@@ -21,19 +21,19 @@
 
 #include "chat.h"
 
-#define NONE    ""
-#define STATUS  "~status"
-#define VERBOSE "~irc"
+#define NONE   "-none-"
+#define STATUS "-status-"
+#define RAW    "-raw-"
 
-const struct Tag TagNone    = { 0, NONE };
-const struct Tag TagStatus  = { 1, STATUS };
-const struct Tag TagVerbose = { 2, VERBOSE };
+const struct Tag TagNone   = { 0, NONE };
+const struct Tag TagStatus = { 1, STATUS };
+const struct Tag TagRaw    = { 2, RAW };
 
 static struct {
 	char *name[TagsLen];
 	size_t len;
 } tags = {
-	.name = { NONE, STATUS, VERBOSE },
+	.name = { NONE, STATUS, RAW },
 	.len = 3,
 };
 
thing. God, it took me a whole month (more?) to read and this is only my third book of the year :( I need some more novellas to read, but the other books I have from the library currently are also thick. 2022-03-22Source ~/.profile.local if it existsJune McEnroe 2022-03-18Publish "Addendum 2021"June McEnroe 2022-03-16Remove wcwidth portJune McEnroe DYLD_FORCE_FLAT_NAMESPACE no longer exists in macOS 12 so this approach doesn't work anymore. Moved to <https://git.causal.agency/jorts/tree/wcwidth> and compiled into <https://git.causal.agency/jorts/tree/ncurses>. 2022-03-16Remove -j4 from ./PlanJune McEnroe Plan learned to set this automatically! 2022-03-15Rewrite Linux install.sh for DebianJune McEnroe 2022-03-15Remove dashJune McEnroe