X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/1b1e02d4acd11f96e061ac04ae243ab0589d2f8a..df65ac42a497f4acfc4cf57335efee9070d1c8a2:/mdocterm.c diff --git a/mdocterm.c b/mdocterm.c index 3e2f70f0..dd52e287 100644 --- a/mdocterm.c +++ b/mdocterm.c @@ -1,4 +1,4 @@ -/* $Id: mdocterm.c,v 1.18 2009/02/27 10:55:16 kristaps Exp $ */ +/* $Id: mdocterm.c,v 1.20 2009/02/28 20:13:06 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -112,7 +112,7 @@ main(int argc, char *argv[]) if (NULL == (mdoc = mmain_mdoc(p))) mmain_exit(p, 1); - termp.maxrmargin = 80; /* XXX */ + termp.maxrmargin = 78; /* XXX */ termp.rmargin = termp.maxrmargin; termp.maxcols = 1024; termp.offset = termp.col = 0; @@ -554,7 +554,14 @@ word(struct termp *p, const char *word) if ( ! xisspace(word[i])) { j++; continue; + } + + /* Escaped spaces don't delimit... */ + if (i > 0 && xisspace(word[i]) && '\\' == word[i - 1]) { + j++; + continue; } + if (0 == j) continue; assert(i >= j);