=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/roff.c,v retrieving revision 1.162 retrieving revision 1.163 diff -c -r1.162 -r1.163 *** src/usr.bin/mandoc/roff.c 2017/03/03 11:49:33 1.162 --- src/usr.bin/mandoc/roff.c 2017/03/03 13:55:06 1.163 *************** *** 1,4 **** ! /* $OpenBSD: roff.c,v 1.162 2017/03/03 11:49:33 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: roff.c,v 1.163 2017/03/03 13:55:06 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017 Ingo Schwarze *************** *** 1606,1612 **** return ROFF_IGN; while (buf->buf[pos] != '\0' && buf->buf[pos] != ' ') pos++; ! while (buf->buf[pos] != '\0' && buf->buf[pos] == ' ') pos++; return tbl_read(r->tbl, ln, buf->buf, pos); } --- 1606,1612 ---- return ROFF_IGN; while (buf->buf[pos] != '\0' && buf->buf[pos] != ' ') pos++; ! while (buf->buf[pos] == ' ') pos++; return tbl_read(r->tbl, ln, buf->buf, pos); }