summary refs log tree commit diff
path: root/handle.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-08 19:22:49 -0400
committerJune McEnroe <june@causal.agency>2018-08-08 19:22:49 -0400
commit6f9b928e53f972a4285843608feb95ce964f4bdc (patch)
tree9a79edf4e0a8a5c5b02bd970f0ded2d9d806b1a8 /handle.c
parentAdd markers as lines to the log (diff)
downloadcatgirl-6f9b928e53f972a4285843608feb95ce964f4bdc.tar.gz
catgirl-6f9b928e53f972a4285843608feb95ce964f4bdc.zip
Distinguish self with square brackets
Diffstat (limited to 'handle.c')
-rw-r--r--handle.c9
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
 		);
 	}
 }
er.c?id=9f16dc623c229a29d5a15c60d54e81472fb71277&follow=1'>Add empty commandsJune McEnroe 2019-07-28Rename ptee streamJune McEnroe 2019-07-28Remove ptee keybindsJune McEnroe 2019-07-28Import ptee from srcJune McEnroe 2019-07-28Remove old commandsJune McEnroe 2018-04-20Clean up pteeJune McEnroe 2018-04-20Uncommitted changes from months ago :(June McEnroe 2018-02-25Remove winchJune McEnroe 2018-02-25Echo at end of outputJune McEnroe 2018-02-25Add stopJune McEnroe 2018-02-25Switch back to static window sizingJune McEnroe 2018-02-25Add missing includeJune McEnroe 2018-02-25Define rules for multi-object binariesJune McEnroe 2018-02-25Rewrite everythingJune McEnroe 2018-02-22Hardcode path lengths in setupJune McEnroe 2018-02-22Add setup, start commandJune McEnroe 2018-02-22Indent list of streamsJune McEnroe 2018-02-22Add welcome message to ssh-commandJune McEnroe 2018-02-22Sleep before truncationJune McEnroe 2018-02-22List streams if none givenJune McEnroe 2018-02-22Set ForceCommand ssh-commandJune McEnroe 2018-02-22Rename command to ssh-commandJune McEnroe 2018-02-22Add command.shJune McEnroe 2018-02-22Factor out STREAM_SIZE for ingest and broadcastJune McEnroe 2018-02-22Handle EINTR from keventJune McEnroe 2018-02-22Include libutil in chroot.tarJune McEnroe