git: drawterm

Download patch

ref: 903bcd8dba9cb9dfc70707a28089c469e5302539
parent: cdb35f2dc70ceabdf5ead9da99aba535224d3e2c
author: Jacob Moody <moody@posixcafe.org>
date: Sun Jun 29 16:05:00 EDT 2025

kern: bump max snarf size to 2M

--- a/kern/dat.h
+++ b/kern/dat.h
@@ -39,7 +39,7 @@
 
 enum
 {
-	SnarfSize = 64*1024,
+	SnarfSize = 2*1024*1024,
 };
 
 struct Conf
--