summaryrefslogtreecommitdiff
path: root/misc/screen/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'misc/screen/patches/patch-ac')
-rw-r--r--misc/screen/patches/patch-ac22
1 files changed, 0 insertions, 22 deletions
diff --git a/misc/screen/patches/patch-ac b/misc/screen/patches/patch-ac
deleted file mode 100644
index e0f2afcbf5c..00000000000
--- a/misc/screen/patches/patch-ac
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.6 2003/11/27 20:29:48 wiz Exp $
-
---- resize.c.orig Mon Sep 8 16:26:31 2003
-+++ resize.c
-@@ -682,6 +682,17 @@ int wi, he, hi;
- if (wi == 0)
- he = hi = 0;
-
-+ if (wi > 1000)
-+ {
-+ Msg(0, "Window width too large, truncated");
-+ wi = 1000;
-+ }
-+ if (he > 1000)
-+ {
-+ Msg(0, "Window height too large, truncated");
-+ he = 1000;
-+ }
-+
- if (p->w_width == wi && p->w_height == he && p->w_histheight == hi)
- {
- debug("ChangeWindowSize: No change.\n");