diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-18 19:54:04 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-18 19:54:04 +0000 |
commit | e2d8679f361643c8410c69f218268085075bc428 (patch) | |
tree | dca82e75d4b22dabf6b74b2ee68a7736973a7c9b /man_term.c | |
parent | 28dbd78db68ddebbe43fda7d4abefd2d6257d286 (diff) | |
download | mandoc-e2d8679f361643c8410c69f218268085075bc428.tar.gz |
Fixed libman .br to be a newline, not a .PP alias.
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -40,6 +40,7 @@ struct termact { static int pre_B(DECL_ARGS); static int pre_BI(DECL_ARGS); static int pre_BR(DECL_ARGS); +static int pre_br(DECL_ARGS); static int pre_I(DECL_ARGS); static int pre_IB(DECL_ARGS); static int pre_IP(DECL_ARGS); @@ -57,7 +58,7 @@ static void post_SH(DECL_ARGS); static void post_SS(DECL_ARGS); static const struct termact termacts[MAN_MAX] = { - { pre_PP, NULL }, /* br */ + { pre_br, NULL }, /* br */ { NULL, NULL }, /* TH */ { pre_SH, post_SH }, /* SH */ { pre_SS, post_SS }, /* SS */ @@ -262,6 +263,16 @@ post_B(DECL_ARGS) /* ARGSUSED */ static int +pre_br(DECL_ARGS) +{ + + term_newln(p); + return(0); +} + + +/* ARGSUSED */ +static int pre_PP(DECL_ARGS) { |