mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 18:41:08 +02:00
fixed mistakes on st.c portion of keyboard select patch file
This commit is contained in:
parent
30d92bbe92
commit
c0d88f907b
1 changed files with 2 additions and 6 deletions
|
@ -22,11 +22,7 @@ index b8e6077..1ad0f22 100644
|
||||||
|
|
||||||
#include "st.h"
|
#include "st.h"
|
||||||
#include "win.h"
|
#include "win.h"
|
||||||
@@ -2617,10 +2619,13 @@ tresize(int col, int row)
|
@@ -2622,6 +2624,9 @@ 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;
|
||||||
|
|
||||||
|
@ -36,7 +32,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);
|
||||||
@@ -2751,3 +2756,220 @@ redraw(void)
|
@@ -2752,3 +2757,220 @@ redraw(void)
|
||||||
tfulldirt();
|
tfulldirt();
|
||||||
draw();
|
draw();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue