ed: allow larger temp files

Requested by rob.
This commit is contained in:
Russ Cox 2017-09-01 12:05:06 -04:00
parent a5632a13a0
commit a9e20eb10a

View file

@ -13,7 +13,7 @@ enum
FNSIZE = 128, /* file name */
LBSIZE = 4096, /* max line size */
BLKSIZE = 4096, /* block size in temp file */
NBLK = 8191, /* max size of temp file */
NBLK = 32767, /* max size of temp file */
ESIZE = 256, /* max size of reg exp */
GBSIZE = 256, /* max size of global command */
MAXSUB = 9, /* max number of sub reg exp */