tfix -j - 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 2d8bbdeafa9c58298fb5cea48c9b23781fdbbd67
 (DIR) parent bebed446d09081a3cd7e25bdb536de1364e50cd6
 (HTM) Author: rsc <devnull@localhost>
       Date:   Wed, 18 Jan 2006 16:58:56 +0000
       
       fix -j
       
       Diffstat:
         M src/cmd/fmt.c                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/cmd/fmt.c b/src/cmd/fmt.c
       t@@ -210,7 +210,7 @@ printwords(Word **w, int nw)
                                nsp = nspaceafter(w[i-1]->text);
                                if(col+nsp+utflen(w[i]->text) > extraindent+length)
                                        break;        /* fold line */
       -                        if(!join && n != 0 && w[i]->bol)
       +                        if(!join && w[i]->bol)
                                        break;
                                for(j=0; j<nsp; j++)
                                        Bputc(&bout, ' ');        /* emit space; another word will follow */