aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2023-01-06 12:04:10 -0500
committerRuss Cox <rsc@swtch.com>2023-01-06 12:04:17 -0500
commit43f5af9c8da2c89948fd0b6858dfa8b79884adb8 (patch)
tree3b4c7a9caa27c50ead5e6297e5210c2d0163a18b
parent940f1fd6af2c144d0db087fefa8478d2a36633d5 (diff)
acme: allow larger paste amounts
-rw-r--r--src/cmd/acme/dat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/acme/dat.h b/src/cmd/acme/dat.h
index 8a81c97d..e540605a 100644
--- a/src/cmd/acme/dat.h
+++ b/src/cmd/acme/dat.h
@@ -28,7 +28,7 @@ enum
enum
{
Blockincr = 256,
- Maxblock = 8*1024,
+ Maxblock = 32*1024,
NRange = 10,
Infinity = 0x7FFFFFFF /* huge value for regexp address */
};