URI: 
       Setting the surrounding border to defaultbg. - st - simple terminal
  HTML git clone https://git.parazyd.org/st
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 8a9475a0dd9b8751b9b0ed4c7da4db09232e318e
   DIR parent ce3efa9e9b50b0d86ef2d030657dfc69034d6ef7
  HTML Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sun, 10 Feb 2013 16:36:03 +0100
       
       Setting the surrounding border to defaultbg.
       
       Thanks Stephen Caraher <moskvax@gmail.com>!
       
       Diffstat:
         M st.c                                |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/st.c b/st.c
       @@ -2275,7 +2275,7 @@ xresize(int col, int row) {
                        XFreePixmap(xw.dpy, xw.buf);
                        xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
                                        DefaultDepth(xw.dpy, xw.scr));
       -                XSetForeground(xw.dpy, dc.gc, 0);
       +                XSetForeground(xw.dpy, dc.gc, dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg].pixel);
                        XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
                }
        
       @@ -2570,7 +2570,7 @@ xinit(void) {
                                        &gcvalues);
                        xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
                                        DefaultDepth(xw.dpy, xw.scr));
       -                XSetForeground(xw.dpy, dc.gc, 0);
       +                XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
                        XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
                        //xw.buf = xw.win;
                /*
       @@ -2894,7 +2894,7 @@ draw(void) {
                } else {
                        XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
                                        xw.h, 0, 0);
       -                XSetForeground(xw.dpy, dc.gc, 0);
       +                XSetForeground(xw.dpy, dc.gc, dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg].pixel);
                }
        }