diff options
author | June McEnroe <june@causal.agency> | 2020-02-04 20:23:55 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-04 20:23:55 -0500 |
commit | 9944dc484bf8cc7d5f1c506610a0593202bb5f92 (patch) | |
tree | cd5e669ae807905462efe2a4f2c96299cb9e699d /chat.c | |
parent | Align word wrapping with tab character (diff) | |
download | catgirl-9944dc484bf8cc7d5f1c506610a0593202bb5f92.tar.gz catgirl-9944dc484bf8cc7d5f1c506610a0593202bb5f92.zip |
Split showing style codes and word wrapping
Diffstat (limited to '')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index 1656a53..545eca6 100644 --- a/chat.c +++ b/chat.c @@ -41,7 +41,7 @@ enum Color idColors[IDCap] = { size_t idNext = Network + 1; -struct Self self; +struct Self self = { .color = Default }; static volatile sig_atomic_t signals[NSIG]; static void signalHandler(int signal) { |