aboutsummaryrefslogtreecommitdiffstats
path: root/kirc.h
diff options
context:
space:
mode:
authorjoe <rbo@gmx.us>2025-10-22 12:04:26 +0200
committerjoe <rbo@gmx.us>2025-10-22 12:04:26 +0200
commit2455a296782495c4909adbf961cf8595d7c1cb41 (patch)
tree95025f2d6f5d5879d6ee6f8a6255c89ab3adf8ee /kirc.h
parentchanged minor stuff on user input (diff)
downloadkirc-2455a296782495c4909adbf961cf8595d7c1cb41.tar.gz
kirc-2455a296782495c4909adbf961cf8595d7c1cb41.tar.bz2
kirc-2455a296782495c4909adbf961cf8595d7c1cb41.tar.xz
kirc-2455a296782495c4909adbf961cf8595d7c1cb41.tar.zst
kirc-2455a296782495c4909adbf961cf8595d7c1cb41.zip
fixed nick len
Diffstat (limited to 'kirc.h')
-rw-r--r--kirc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kirc.h b/kirc.h
index d6b1ea6..837a6b1 100644
--- a/kirc.h
+++ b/kirc.h
@@ -12,7 +12,7 @@
#define TESTCHARS "\xe1\xbb\xa4"
#define MSG_MAX 512 /* irc rfc says lines are 512 char's max, but servers can accept more */
#define CHA_MAX 200
-#define WRAP_LEN 22
+#define WRAP_LEN 30
#define ABUF_LEN (sizeof("\r") - 1 + CHA_MAX + sizeof("> ") - 1 + MSG_MAX + sizeof("\x1b[0K") - 1 + 32 + 1)
/* this is as big as the ab buffer can get */
#define HIS_MAX 100