mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-08-14 00:48:42 +02:00
Double line buffer size because we expect more MBCS input #1
This commit is contained in:
@ -57,11 +57,11 @@
|
||||
* (This should have been done via sysconf(), but I didn't do it in order
|
||||
* to ease porting to non-unix platforms.)
|
||||
*/
|
||||
#if defined(LINE_MAX_BYTES) && (LINE_MAX_BYTES < 1024)
|
||||
#if defined(LINE_MAX_BYTES) && (LINE_MAX_BYTES < 2048)
|
||||
#undef LINE_MAX_BYTES
|
||||
#endif
|
||||
#ifndef LINE_MAX_BYTES
|
||||
#define LINE_MAX_BYTES 2048
|
||||
#define LINE_MAX_BYTES 4096
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user