fixed st.c portion of keyboard select patch file

- matching line numbers
- matching content
This commit is contained in:
Zachary Schlitt 2019-10-07 00:13:43 -05:00
parent 88e187933a
commit 53d58e9630

View file

@ -20,7 +20,11 @@ index b8e6077..1ad0f22 100644
#include "st.h" #include "st.h"
#include "win.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; int *bp;
TCursor c; TCursor c;
@ -30,7 +34,7 @@ index b8e6077..1ad0f22 100644
if (col < 1 || row < 1) { if (col < 1 || row < 1) {
fprintf(stderr, fprintf(stderr,
"tresize: error resizing to %dx%d\n", col, row); "tresize: error resizing to %dx%d\n", col, row);
@@ -2602,3 +2607,220 @@ redraw(void) @@ -2751,3 +2756,220 @@ redraw(void)
tfulldirt(); tfulldirt();
draw(); draw();
} }