about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKylie McClain <kylie@somas.is>2022-01-04 17:49:43 -0500
committerKylie McClain <kylie@somas.is>2022-01-27 14:56:28 -0500
commit18872733f7f2f2ac8a2b62c32b64721b74aad533 (patch)
tree2f1bb0c7e466f2a40ccec70caf94da3c88bf8bb8
parenthandle.c: o pona e toki tan /nick (diff)
downloadcatgirl-18872733f7f2f2ac8a2b62c32b64721b74aad533.tar.gz
catgirl-18872733f7f2f2ac8a2b62c32b64721b74aad533.zip
handle.c: o pona e kepeken pi nimi "e"
Diffstat (limited to '')
-rw-r--r--handle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/handle.c b/handle.c
index fa8b0bf..68bc344 100644
--- a/handle.c
+++ b/handle.c
@@ -403,7 +403,7 @@ static void handleKick(struct Message *msg) {
 	urlScan(id, msg->nick, msg->params[2]);
 	uiFormat(
 		id, (kicked ? Hot : Cold), tagTime(msg),
-		"jan %s\3%02d%s\17\tli weka e \3%02d%s\3 tawa tomo \3%02d%s\3%s%s",
+		"jan %s\3%02d%s\17\tli weka e \3%02d%s\3 tan tomo \3%02d%s\3%s%s",
 		(kicked ? "\26" : ""),
 		hash(msg->user), msg->nick,
 		completeColor(id, msg->params[1]), msg->params[1],
@@ -461,7 +461,7 @@ static void handleQuit(struct Message *msg) {
 		if (heat > Ice) urlScan(id, msg->nick, msg->params[0]);
 		uiFormat(
 			id, heat, tagTime(msg),
-			"jan \3%02d%s\3\tli weka lon e kulupu%s%s",
+			"jan \3%02d%s\3\tli weka tan kulupu%s%s",
 			hash(msg->user), msg->nick,
 			(msg->params[0] ? ": " : ""), (msg->params[0] ?: "")
 		);
@@ -1149,7 +1149,7 @@ static void handleReplyAway(struct Message *msg) {
 	}
 	uiFormat(
 		id, Warm, tagTime(msg),
-		"jan \3%02d%s\3\tli weka tan e ni: %s",
+		"jan \3%02d%s\3\tli weka tan ni: %s",
 		completeColor(id, msg->params[1]), msg->params[1], msg->params[2]
 	);
 	logFormat(
>2020-12-29Add make lexerJune McEnroe This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar. 2020-12-29Clean up C lexerJune McEnroe This ordering of rules feels much cleaner. 2020-12-29Clean up hilex code somewhatJune McEnroe 2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe 2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe 2020-12-29Match C type declarations as IdentifierTagJune McEnroe 2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe 2020-12-29Reconfigure C macro start conditionsJune McEnroe 2020-12-29Document HTML class namesJune McEnroe 2020-12-29Rename Tag class to IdentifierTagJune McEnroe 2020-12-29Change HTML class from hi to hilexJune McEnroe You can tell I was just copying the HTML code huh. 2020-12-29Add hilex HTML outputJune McEnroe