URI: 
       clean comment regarding redrawing in bmotion(). - st - simple terminal
  HTML git clone https://git.parazyd.org/st
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 81a048d6cfda84a06353911130fee029df077c8d
   DIR parent b61afd24be566d8c8d7d5310fdad973441139428
  HTML 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); */
                }
        }