=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/fmt/fmt.c,v retrieving revision 1.36 retrieving revision 1.37 diff -c -r1.36 -r1.37 *** src/usr.bin/fmt/fmt.c 2016/01/07 18:02:43 1.36 --- src/usr.bin/fmt/fmt.c 2017/02/19 23:45:46 1.37 *************** *** 1,4 **** ! /* $OpenBSD: fmt.c,v 1.36 2016/01/07 18:02:43 schwarze Exp $ */ /* Sensible version of fmt * --- 1,4 ---- ! /* $OpenBSD: fmt.c,v 1.37 2017/02/19 23:45:46 schwarze Exp $ */ /* Sensible version of fmt * *************** *** 468,474 **** tab_width - line_width; else if ((wcw = wcwidth(wc)) == -1) wcw = 1; ! if (iswblank(wc)) { /* Skip whitespace at start of line. */ if (word_length == 0) { wordp += wcl; --- 468,474 ---- tab_width - line_width; else if ((wcw = wcwidth(wc)) == -1) wcw = 1; ! if (iswblank(wc) && wc != 0xa0) { /* Skip whitespace at start of line. */ if (word_length == 0) { wordp += wcl;