ref: 991d96fa073332b83cd673f65bf95b4728948932
parent: 342cc2af7924581076397c2797b0673e44cd2b57
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sun May 18 13:22:24 EDT 2025
sed: increase input line size to 32k (was 8k)
--- a/sys/src/cmd/sed.c
+++ b/sys/src/cmd/sed.c
@@ -11,7 +11,7 @@
MAXCMDS = 512, /* max sed commands */
ADDSIZE = 10000, /* size of add & read buffer */
MAXADDS = 20, /* max pending adds and reads */
- LBSIZE = 8192, /* input line size */
+ LBSIZE = 32768, /* input line size */
LABSIZE = 50, /* max number of labels */
MAXSUB = 10, /* max number of sub reg exp */
MAXFILES = 120, /* max output files */
--
⑨