Fix selection: selclear in tputc - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8304d4f0599b1be2226c28c553547070658d4af3
 (DIR) parent 914fb825df3bde7abdd7947e54f8bf4d2b55e34e
 (HTM) Author: Jakub Leszczak <szatan@gecc.xyz>
       Date:   Wed,  6 May 2020 13:35:06 +0200
       
       Fix selection: selclear in tputc
       
       Diffstat:
         M st.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -2412,7 +2412,7 @@ check_control_code:
                         */
                        return;
                }
       -        if (sel.ob.x != -1 && BETWEEN(term.c.y, sel.ob.y, sel.oe.y))
       +        if (selected(term.c.x, term.c.y))
                        selclear();
        
                gp = &term.line[term.c.y][term.c.x];