diff options
author | June McEnroe <june@causal.agency> | 2020-02-04 19:50:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-04 19:50:23 -0500 |
commit | d57df09511a5e4136559ccdd01ab56e906827f96 (patch) | |
tree | 8d97953e11d81d11aca925ace1df79e1755e18a5 /handle.c | |
parent | Only check revents if nfds > 0 (diff) | |
download | catgirl-d57df09511a5e4136559ccdd01ab56e906827f96.tar.gz catgirl-d57df09511a5e4136559ccdd01ab56e906827f96.zip |
Align word wrapping with tab character
Also fixes handling whitespace directly after control codes.
Diffstat (limited to '')
-rw-r--r-- | handle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handle.c b/handle.c index ef49f7c..29d1500 100644 --- a/handle.c +++ b/handle.c @@ -212,7 +212,7 @@ static void handlePrivmsg(struct Message *msg) { if (query && !network) idColors[id] = hash(msg->user); uiFormat( id, Warm, tagTime(msg), - "\3%d%s%s%s\3 %s", + "\3%d%s%s%s\3\t%s", hash(msg->user), (action ? "* " : notice ? "-" : "<"), msg->nick, |