diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-05-15 22:18:56 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-05-15 22:18:56 +0000 |
commit | 537963a3f11ccabce1df257ddd6f3471203e24f0 (patch) | |
tree | 76ba73e0abe78365c2cc1a566c202b918808f435 /usr.bin/mandoc | |
parent | d60f74eb10653f766a3e790c71b53f914c5c6baa (diff) |
For .IP, a single space after the head is sufficient;
by Joerg Sonnenberger.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/man_term.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_term.c b/usr.bin/mandoc/man_term.c index 89d47ae139d..2a71dd781be 100644 --- a/usr.bin/mandoc/man_term.c +++ b/usr.bin/mandoc/man_term.c @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.32 2010/05/15 21:09:53 schwarze Exp $ */ +/* $Id: man_term.c,v 1.33 2010/05/15 22:18:55 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -489,7 +489,6 @@ pre_IP(DECL_ARGS) break; case (MAN_HEAD): p->flags |= TERMP_NOBREAK; - p->flags |= TERMP_TWOSPACE; break; case (MAN_BLOCK): print_bvspace(p, n); @@ -550,7 +549,6 @@ post_IP(DECL_ARGS) case (MAN_HEAD): term_flushln(p); p->flags &= ~TERMP_NOBREAK; - p->flags &= ~TERMP_TWOSPACE; p->rmargin = p->maxrmargin; break; case (MAN_BODY): |