summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-17 23:06:37 -0500
committerJune McEnroe <june@causal.agency>2020-02-17 23:06:37 -0500
commit6be9aa9901c438a5bffd1dc572db6b8e0e1091ff (patch)
treeb1003cc8e62f643c09f7f982b28583fae159fe80 /ui.c
parentAccept Shift-M-0 through Shift-M-9 as well (diff)
downloadcatgirl-6be9aa9901c438a5bffd1dc572db6b8e0e1091ff.tar.gz
catgirl-6be9aa9901c438a5bffd1dc572db6b8e0e1091ff.zip
Increase buffer size to 1024
Diffstat (limited to '')
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 00313eb..e261289 100644
--- a/ui.c
+++ b/ui.c
@@ -53,7 +53,7 @@ static WINDOW *status;
 static WINDOW *marker;
 static WINDOW *input;
 
-enum { BufferCap = 512 };
+enum { BufferCap = 1024 };
 struct Buffer {
 	time_t times[BufferCap];
 	char *lines[BufferCap];
b7df8983c491da53a8ffbab87617ae2a23&follow=1'>Add .gz to chroot-man scriptJune McEnroe 2020-02-11Add -R restricted flagJune McEnroe 2020-02-11Add chroot targetJune McEnroe 2020-02-11Exit focus and paste modes on err exitJune McEnroe 2020-02-11Add startup GPLv3 note and URLJune McEnroe 2020-02-11Make sure -D_GNU_SOURCE ends up in CFLAGS on LinuxJune McEnroe 2020-02-11Add note about setting PKG_CONFIG_PATHJune McEnroe 2020-02-11Rename query ID on nick changeJune McEnroe 2020-02-11Call completeClear when closing a windowJune McEnroe 2020-02-11Don't insert color codes for non-mentionsJune McEnroe 2020-02-11Take first two words in colorMentionsJune McEnroe 2020-02-11Use time_t for save signatureJune McEnroe 2020-02-11Set self.nick to * initiallyJune McEnroe 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe