diff options
| author | noname <noname@inventati.org> | 2014-04-27 15:39:29 +0400 |
|---|---|---|
| committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-04-28 18:38:06 +0200 |
| commit | 17fa1493ee0d8c53c63b3c8d1325ee38fd3192e1 (patch) | |
| tree | 1888a46b12fad03a6af59b36c5f22ae87dbae0ca | |
| parent | a8a9e66a7d481c66bd9680ff0670c322bedd7ca7 (diff) | |
| download | st-17fa1493ee0d8c53c63b3c8d1325ee38fd3192e1.tar.gz st-17fa1493ee0d8c53c63b3c8d1325ee38fd3192e1.zip | |
Compute ena_sel as one expression.
| -rw-r--r-- | st.c | 5 |
1 files changed, 1 insertions, 4 deletions
| @@ -3491,12 +3491,9 @@ drawregion(int x1, int y1, int x2, int y2) { | |||
| 3491 | int ic, ib, x, y, ox, sl; | 3491 | int ic, ib, x, y, ox, sl; |
| 3492 | Glyph base, new; | 3492 | Glyph base, new; |
| 3493 | char buf[DRAW_BUF_SIZ]; | 3493 | char buf[DRAW_BUF_SIZ]; |
| 3494 | bool ena_sel = sel.ob.x != -1; | 3494 | bool ena_sel = sel.ob.x != -1 && sel.alt == IS_SET(MODE_ALTSCREEN); |
| 3495 | long unicodep; | 3495 | long unicodep; |
| 3496 | 3496 | ||
| 3497 | if(sel.alt != IS_SET(MODE_ALTSCREEN)) | ||
| 3498 | ena_sel = 0; | ||
| 3499 | |||
| 3500 | if(!(xw.state & WIN_VISIBLE)) | 3497 | if(!(xw.state & WIN_VISIBLE)) |
| 3501 | return; | 3498 | return; |
| 3502 | 3499 | ||
