[hackers] [st] People, learn to keep to styles. Thanks. || Christoph Lohmann
commit c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c
Author: Christoph Lohmann <20h_AT_r-36.net>
Date: Wed Oct 2 21:06:50 2013 +0200
People, learn to keep to styles. Thanks.
diff --git a/st.c b/st.c
index 12fcc90..84f9abb 100644
--- a/st.c
+++ b/st.c
_AT_@ -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:
_AT_@ -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),"[%i;%iR", term.c.y+1, term.c.x+1);
+ len = snprintf(buf, sizeof(buf),"[%i;%iR",
+ term.c.y+1, term.c.x+1);
ttywrite(buf, len);
break;
}
Received on Wed Oct 02 2013 - 21:07:03 CEST
This archive was generated by hypermail 2.3.0
: Wed Oct 02 2013 - 21:12:18 CEST