ttweaks - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2d23eb93a0573b4dbe2ecc0a2a157c9e57368dd1
 (DIR) parent 04692ecc908ea678e9283fd17a81f54b04ffdb32
 (HTM) Author: rsc <devnull@localhost>
       Date:   Thu, 12 Jan 2006 04:35:14 +0000
       
       ttweaks
       
       Diffstat:
         M src/cmd/acme/cols.c                 |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/src/cmd/acme/cols.c b/src/cmd/acme/cols.c
       t@@ -307,7 +307,7 @@ colgrow(Column *c, Window *w, int but)
                        if(i==c->nw-1 || c->safe==FALSE)
                                r.max.y = cr.max.y;
                        else
       -                        r.max.y = c->w[i+1]->r.min.y;
       +                        r.max.y = c->w[i+1]->r.min.y-Border;
                        winresize(w, r, FALSE, TRUE);
                        return;
                }
       t@@ -516,7 +516,7 @@ coldragwin(Column *c, Window *w, int but)
                        r.max.y = c->r.max.y;
                else
                        r.max.y = c->w[i+1]->r.min.y-Border;
       -        winresize(w, r, c->safe, i+1==c->nw);
       +        winresize(w, r, c->safe, TRUE);
                c->safe = TRUE;
                    winmousebut(w);
        }