aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-10-02 21:06:50 +0200
committerChristoph Lohmann <20h@r-36.net>2013-10-02 21:06:50 +0200
commitc5c2365ab7c7ac2671b6e7d31cc9b0d41636393c (patch)
tree662d2430af7673e0e8b95e4314c4b8060c1b3d61 /st.c
parent62ab938965f2673e029ae2e2a4244788e673bd70 (diff)
downloadst-c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c.tar.gz
People, learn to keep to styles. Thanks.
Diffstat (limited to 'st.c')
-rw-r--r--st.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/st.c b/st.c
index 12fcc90..84f9abb 100644
--- a/st.c
+++ b/st.c
@@ -1920,6 +1920,9 @@ tsetmode(bool priv, bool set, int *args, int narg) {
void
csihandle(void) {
+ char buf[40];
+ int len;
+
switch(csiescseq.mode) {
default:
unknown:
@@ -2070,8 +2073,8 @@ csihandle(void) {
break;
case 'n': /* DSR – Device Status Report (cursor position) */
if (csiescseq.arg[0] == 6) {
- char buf[40];
- int len = snprintf(buf, sizeof(buf),"\033[%i;%iR", term.c.y+1, term.c.x+1);
+ len = snprintf(buf, sizeof(buf),"\033[%i;%iR",
+ term.c.y+1, term.c.x+1);
ttywrite(buf, len);
break;
}
remember that computers suck.