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 /chat.h | |
parent | a23f587be8a344a5f3834f9ff6a8b15e2c8dcbe2 (diff) |
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.h b/chat.h index 9a544f5..eaecb50 100644 --- a/chat.h +++ b/chat.h @@ -42,7 +42,7 @@ struct { char *user; char *real; char *join; - bool verbose; + bool raw; bool notify; bool quit; } self; @@ -59,7 +59,7 @@ struct Tag { enum { TagsLen = 256 }; const struct Tag TagNone; const struct Tag TagStatus; -const struct Tag TagVerbose; +const struct Tag TagRaw; struct Tag tagFind(const char *name); struct Tag tagFor(const char *name); |