diff options
author | June McEnroe <june@causal.agency> | 2018-08-08 19:22:49 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-08 19:22:49 -0400 |
commit | 6f9b928e53f972a4285843608feb95ce964f4bdc (patch) | |
tree | 9a79edf4e0a8a5c5b02bd970f0ded2d9d806b1a8 /handle.c | |
parent | Add markers as lines to the log (diff) | |
download | catgirl-6f9b928e53f972a4285843608feb95ce964f4bdc.tar.gz catgirl-6f9b928e53f972a4285843608feb95ce964f4bdc.zip |
Distinguish self with square brackets
Diffstat (limited to '')
-rw-r--r-- | handle.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/handle.c b/handle.c index 88c17b7..10bce42 100644 --- a/handle.c +++ b/handle.c @@ -228,14 +228,11 @@ static void handlePrivmsg(char *prefix, char *params) { if (mesg[0] == '\1') { strsep(&mesg, " "); char *action = strsep(&mesg, "\1"); - uiFmt( - "* \3%d%s\3%s %s", - color(user), nick, (self ? "15" : ""), action - ); + uiFmt("* \3%d%s\3 %s", color(user), nick, action); } else { uiFmt( - "<%s\3%d%s\17>\3%s %s", - (ping ? "\26" : ""), color(user), nick, (self ? "15" : ""), mesg + "%c%c\3%d%s\17%c %s", + self["<["], ping["\17\26"], color(user), nick, self[">]"], mesg ); } } |