Bump edit buffer cap to 1024

With message splitting it's reasonable to allow this to be larger.
weechat-hashes
C. McEnroe 2020-03-23 13:45:28 -04:00
parent cf1545870a
commit 7ea1a416a1
1 changed files with 1 additions and 1 deletions

2
edit.c
View File

@ -24,7 +24,7 @@
#include "chat.h"
enum { Cap = 512 };
enum { Cap = 1024 };
static wchar_t buf[Cap];
static size_t len;
static size_t pos;