summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdoc_term.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index 4c11a3c3..be0a2ab0 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1227,14 +1227,8 @@ static int
termp_nd_pre(DECL_ARGS)
{
- if (MDOC_BODY != n->type)
- return(1);
-
-#if defined(__OpenBSD__) || defined(__linux__)
- term_word(p, "\\(en");
-#else
- term_word(p, "\\(em");
-#endif
+ if (n->type == MDOC_BODY)
+ term_word(p, "\\(en");
return(1);
}