summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-18 19:54:04 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-18 19:54:04 +0000
commite2d8679f361643c8410c69f218268085075bc428 (patch)
treedca82e75d4b22dabf6b74b2ee68a7736973a7c9b /man_term.c
parent28dbd78db68ddebbe43fda7d4abefd2d6257d286 (diff)
downloadmandoc-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.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/man_term.c b/man_term.c
index 06647420..7d09940a 100644
--- a/man_term.c
+++ b/man_term.c
@@ -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)
{