diff options
| author | Christoph Lohmann <20h@r-36.net> | 2013-10-02 21:06:50 +0200 |
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2013-10-02 21:06:50 +0200 |
| commit | c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c (patch) | |
| tree | 662d2430af7673e0e8b95e4314c4b8060c1b3d61 | |
| parent | 62ab938965f2673e029ae2e2a4244788e673bd70 (diff) | |
| download | st-c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c.tar.gz st-c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c.zip | |
People, learn to keep to styles. Thanks.
| -rw-r--r-- | st.c | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -1920,6 +1920,9 @@ tsetmode(bool priv, bool set, int *args, int narg) { | |||
| 1920 | 1920 | ||
| 1921 | void | 1921 | void |
| 1922 | csihandle(void) { | 1922 | csihandle(void) { |
| 1923 | char buf[40]; | ||
| 1924 | int len; | ||
| 1925 | |||
| 1923 | switch(csiescseq.mode) { | 1926 | switch(csiescseq.mode) { |
| 1924 | default: | 1927 | default: |
| 1925 | unknown: | 1928 | unknown: |
| @@ -2070,8 +2073,8 @@ csihandle(void) { | |||
| 2070 | break; | 2073 | break; |
| 2071 | case 'n': /* DSR – Device Status Report (cursor position) */ | 2074 | case 'n': /* DSR – Device Status Report (cursor position) */ |
| 2072 | if (csiescseq.arg[0] == 6) { | 2075 | if (csiescseq.arg[0] == 6) { |
| 2073 | char buf[40]; | 2076 | len = snprintf(buf, sizeof(buf),"\033[%i;%iR", |
| 2074 | int len = snprintf(buf, sizeof(buf),"\033[%i;%iR", term.c.y+1, term.c.x+1); | 2077 | term.c.y+1, term.c.x+1); |
| 2075 | ttywrite(buf, len); | 2078 | ttywrite(buf, len); |
| 2076 | break; | 2079 | break; |
| 2077 | } | 2080 | } |
