aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-01-27 17:48:01 +0100
committerChristoph Lohmann <20h@r-36.net>2013-01-27 17:48:01 +0100
commitefd04ccad6d3c4e981b3efdb0423d8f5ca40f984 (patch)
tree4f1c71e68cc3d505c264d8d884cebe1964cabda9
parent26c101b70671d1adbdd4e31af70502605fe3ebbf (diff)
downloadst-patched-efd04ccad6d3c4e981b3efdb0423d8f5ca40f984.tar.bz2
st-patched-efd04ccad6d3c4e981b3efdb0423d8f5ca40f984.tar.xz
st-patched-efd04ccad6d3c4e981b3efdb0423d8f5ca40f984.zip
Fixing the menus in mc.
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index fa4136a..a1932dd 100644
--- a/st.c
+++ b/st.c
@@ -1745,8 +1745,8 @@ csihandle(void) {
1745 break; 1745 break;
1746 case 'X': /* ECH -- Erase <n> char */ 1746 case 'X': /* ECH -- Erase <n> char */
1747 DEFAULT(csiescseq.arg[0], 1); 1747 DEFAULT(csiescseq.arg[0], 1);
1748 tclearregion(term.c.x, term.c.y, term.c.x + csiescseq.arg[0], 1748 tclearregion(term.c.x, term.c.y,
1749 term.c.y, 1); 1749 term.c.x + csiescseq.arg[0] - 1, term.c.y, 1);
1750 break; 1750 break;
1751 case 'P': /* DCH -- Delete <n> char */ 1751 case 'P': /* DCH -- Delete <n> char */
1752 DEFAULT(csiescseq.arg[0], 1); 1752 DEFAULT(csiescseq.arg[0], 1);