From 53d58e96307714401216e4e265ea2dc1d2d65e98 Mon Sep 17 00:00:00 2001 From: Zachary Schlitt Date: Mon, 7 Oct 2019 00:13:43 -0500 Subject: [PATCH] fixed st.c portion of keyboard select patch file - matching line numbers - matching content --- keyboard-select.patch | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/keyboard-select.patch b/keyboard-select.patch index 8297f39..8093c94 100644 --- a/keyboard-select.patch +++ b/keyboard-select.patch @@ -20,7 +20,11 @@ index b8e6077..1ad0f22 100644 #include "st.h" #include "win.h" -@@ -2481,6 +2483,9 @@ tresize(int col, int row) +@@ -2617,10 +2619,13 @@ tresize(int col, int row) + { + int i, j; + int minrow = MIN(row, term.row); + int mincol = MIN(col, term.col); int *bp; TCursor c; @@ -30,7 +34,7 @@ index b8e6077..1ad0f22 100644 if (col < 1 || row < 1) { fprintf(stderr, "tresize: error resizing to %dx%d\n", col, row); -@@ -2602,3 +2607,220 @@ redraw(void) +@@ -2751,3 +2756,220 @@ redraw(void) tfulldirt(); draw(); }