Ted Unangst: > --- ul.c 10 Oct 2015 16:15:03 -0000 1.19 > +++ ul.c 23 Oct 2015 10:29:43 -0000 > @@ -241,6 +241,8 @@ mfilter(FILE *f) > obuf[col].c_mode |= BOLD|mode; > else > obuf[col].c_mode = mode; > + if ((c & (0x80 | 0x40)) == 0x80 && col > 0) > + obuf[col].c_mode = obuf[col - 1].c_mode; > col++; > if (col > maxcol) > maxcol = col;
That doesn't quite work. Check out this: mandoc /usr/share/man/man1/ksh.1 | sed -n 1185,1190p | ul -- Christian "naddy" Weisgerber [email protected]
