diff options
author | Curtis McEnroe | 2018-12-05 14:46:34 -0500 |
---|---|---|
committer | Curtis McEnroe | 2018-12-05 14:46:34 -0500 |
commit | 2797ac8abfdfa3d89120b6781157eb8164406287 (patch) | |
tree | f626957c16686e43ea0108ee28f7f085a6afc922 /tag.c | |
parent | a23f587be8a344a5f3834f9ff6a8b15e2c8dcbe2 (diff) |
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 14 |
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, }; |