t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit af4667a85a11a1c001e60894a7ec7458c208bc0d
   DIR parent a98b5e59359173111322171187ccfd951df85a38
   URI Author: Anselm R. Garbe <garbeam@gmail.com>
       Date:   Fri,  2 Nov 2007 17:07:14 +0100
       
       simplified
       Diffstat:
         M dwm.c                               |      13 +++++--------
       
       1 file changed, 5 insertions(+), 8 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1300,15 +1300,12 @@ run(void) {
                                eprint("select failed\n");
                        }
                        if(FD_ISSET(STDIN_FILENO, &rd)) {
       -                        if(stext == fgets(stext, sizeof stext - 1, stdin))
       +                        if((readin = (stext == fgets(stext, sizeof stext - 1, stdin))))
                                        stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */
       -                        else {
       -                                readin = False;
       -                                if(feof(stdin))
       -                                        strncpy(stext, "EOF", 4);
       -                                else /* error occured */
       -                                        strncpy(stext, strerror(errno), sizeof stext - 1);
       -                        }
       +                        else if(feof(stdin))
       +                                strncpy(stext, "EOF", 4);
       +                        else /* error occured */
       +                                strncpy(stext, strerror(errno), sizeof stext - 1);
                                drawbar();
                        }
                        while(XPending(dpy)) {