diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 09:50:31 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 09:50:31 +0000 |
commit | 7781128d46665331fdbd9893a256257e88eaf96d (patch) | |
tree | 2e1e8ed81202c43bef356b75ea9f2f2cd86440d6 /html.c | |
parent | a9dec6b72054a997078fb8d026d5a990639857dd (diff) | |
download | mandoc-7781128d46665331fdbd9893a256257e88eaf96d.tar.gz |
Added Bf, Pf, etc. to -Thtml.
Fixed Rs in -Tascii to behave properly when not in "SEE ALSO" section.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -424,7 +424,8 @@ print_text(struct html *h, const char *p) case(']'): /* FALLTHROUGH */ case('}'): - h->flags |= HTML_NOSPACE; + if ( ! (HTML_IGNDELIM & h->flags)) + h->flags |= HTML_NOSPACE; break; default: break; |