diff options
author | 2015-02-10 08:05:07 +0000 | |
---|---|---|
committer | 2015-02-10 08:05:07 +0000 | |
commit | 60ffacdfa8e3df31cac03f8c46ceffb70dd2b635 (patch) | |
tree | 91d7935885b7bcda3418ad68141f9ceac39b02f2 /usr.bin/mandoc/man_html.c | |
parent | Add a stub option for big_writes. This is needed by gvfs. (diff) | |
download | wireguard-openbsd-60ffacdfa8e3df31cac03f8c46ceffb70dd2b635.tar.xz wireguard-openbsd-60ffacdfa8e3df31cac03f8c46ceffb70dd2b635.zip |
trim trailing white space, no code change;
from Svyatoslav Mishyn <juef at openmailboxd dot org>, Crux Linux
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 40f1dcbcdf3..ba03997a7e3 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.63 2015/01/30 22:04:15 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.64 2015/02/10 08:05:07 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -214,7 +214,7 @@ print_man_node(MAN_ARGS) print_paragraph(h); return; } - if (n->flags & MAN_LINE && (*n->string == ' ' || + if (n->flags & MAN_LINE && (*n->string == ' ' || (n->prev != NULL && mh->fl & MANH_LITERAL && ! (h->flags & HTML_NONEWLINE)))) print_otag(h, TAG_BR, 0, NULL); |