summary refs log tree commit diff
path: root/litterbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'litterbox.c')
-rw-r--r--litterbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/litterbox.c b/litterbox.c
index 2180350..0213b31 100644
--- a/litterbox.c
+++ b/litterbox.c
@@ -272,11 +272,11 @@ static void querySearch(struct Message *msg) {
 		format("NOTICE %s :(%s) [%s] ", msg->nick, context, time);
 		switch (type) {
 			break; case Privmsg:
-				format("<\3%02d%s\3> %s\r\n", color(user), nick, message);
+				format("\3%d<%s>\3 %s\r\n", color(user), nick, message);
 			break; case Notice:
-				format("-\3%02d%s\3- %s\r\n", color(user), nick, message);
+				format("\3%d-%s-\3 %s\r\n", color(user), nick, message);
 			break; case Action:
-				format("* \3%02d%s\3 %s\r\n", color(user), nick, message);
+				format("\3%d* %s\3 %s\r\n", color(user), nick, message);
 			break; case Join:
 				format("\3%02d%s\3 joined\r\n", color(user), nick);
 			break; case Part:
2298c35372fd12fd2e&follow=1'>Remove kcgi 0.11 compatibilityJune McEnroe 2020-07-17Filter networks with only private contextsJune McEnroe 2020-07-17Add export optionJune McEnroe Adding the export query parameter to any page downloads a .html with the default stylesheet embedded, and all navigation, forms and internal links removed, for being able to share some part of a private instance of litterbox. 2020-07-17Add margin to inputsJune McEnroe Seems that only Safari provides any margins on form elements by default. 2020-07-16Don't write null terminator in stylesheet responseJune McEnroe 2020-07-16Remove sudo from make installJune McEnroe