diff options
author | June McEnroe <june@causal.agency> | 2018-12-05 14:46:34 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-05 14:46:34 -0500 |
commit | 2797ac8abfdfa3d89120b6781157eb8164406287 (patch) | |
tree | f626957c16686e43ea0108ee28f7f085a6afc922 /chat.h | |
parent | Add standards needed for SASL to catgirl.1 (diff) | |
download | catgirl-2797ac8abfdfa3d89120b6781157eb8164406287.tar.gz catgirl-2797ac8abfdfa3d89120b6781157eb8164406287.zip |
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to '')
-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); |