clean comment regarding redrawing in bmotion(). - 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 81a048d6cfda84a06353911130fee029df077c8d
 (DIR) parent b61afd24be566d8c8d7d5310fdad973441139428
 (HTM) Author: Aurélien Aptel <aurelien.aptel@gmail.com>
       Date:   Fri, 19 Nov 2010 22:32:39 +0100
       
       clean comment regarding redrawing in bmotion().
       
       Diffstat:
         M st.c                                |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -522,7 +522,9 @@ static void brelease(XEvent *e) {
        static void bmotion(XEvent *e) {
                if (sel.mode) {
                        getbuttoninfo(e, NULL, &sel.ex, &sel.ey);
       -                //        draw(1);
       +                /* XXX: draw() can't keep up, disabled for now.
       +                   selection is visible on button release.
       +                   draw(1); */
                }
        }