Fixing the menus in mc.
This commit is contained in:
parent
26c101b706
commit
efd04ccad6
1 changed files with 2 additions and 2 deletions
4
st.c
4
st.c
|
@ -1745,8 +1745,8 @@ csihandle(void) {
|
||||||
break;
|
break;
|
||||||
case 'X': /* ECH -- Erase <n> char */
|
case 'X': /* ECH -- Erase <n> char */
|
||||||
DEFAULT(csiescseq.arg[0], 1);
|
DEFAULT(csiescseq.arg[0], 1);
|
||||||
tclearregion(term.c.x, term.c.y, term.c.x + csiescseq.arg[0],
|
tclearregion(term.c.x, term.c.y,
|
||||||
term.c.y, 1);
|
term.c.x + csiescseq.arg[0] - 1, term.c.y, 1);
|
||||||
break;
|
break;
|
||||||
case 'P': /* DCH -- Delete <n> char */
|
case 'P': /* DCH -- Delete <n> char */
|
||||||
DEFAULT(csiescseq.arg[0], 1);
|
DEFAULT(csiescseq.arg[0], 1);
|
||||||
|
|
Loading…
Reference in a new issue