mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 02:31:08 +02:00
fixed st.c portion of keyboard select patch file
- matching line numbers - matching content
This commit is contained in:
parent
88e187933a
commit
53d58e9630
1 changed files with 6 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue