diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-12-22 19:50:02 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-12-22 19:50:02 +0100 |
commit | 082bab29f3551e5cee332832ff767c3fb65a5cbc (patch) | |
tree | 9bd7639cbc0ab33179e4e3b7f3a3c2613a636668 /st.c | |
parent | ac4c6da4ef9b05e2886c26272745effc4f975042 (diff) | |
download | st-082bab29f3551e5cee332832ff767c3fb65a5cbc.tar.gz st-082bab29f3551e5cee332832ff767c3fb65a5cbc.zip |
Fixing a compile error.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2530,7 +2530,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) { | |||
2530 | xclear(0, (y == 0)? 0 : winy, borderpx, | 2530 | xclear(0, (y == 0)? 0 : winy, borderpx, |
2531 | winy + xw.ch + ((y >= term.row-1)? xw.h : 0)); | 2531 | winy + xw.ch + ((y >= term.row-1)? xw.h : 0)); |
2532 | } | 2532 | } |
2533 | if(x + charlen >= term.col) | 2533 | if(x + charlen >= term.col) { |
2534 | xclear(winx + width, (y == 0)? 0 : winy, xw.w, | 2534 | xclear(winx + width, (y == 0)? 0 : winy, xw.w, |
2535 | ((y >= term.row-1)? xw.h : (winy + xw.ch))); | 2535 | ((y >= term.row-1)? xw.h : (winy + xw.ch))); |
2536 | } | 2536 | } |