From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 39ac8a72; for ; Fri, 28 Nov 2014 11:54:23 -0500 (EST) Date: Fri, 28 Nov 2014 11:54:23 -0500 (EST) Message-Id: <13748602960661128396.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: mop up an #ifdef turd deraadt@ stepped into X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- mop up an #ifdef turd deraadt@ stepped into Modified Files: -------------- mdocml: mdoc_term.c Revision Data ------------- Index: mdoc_term.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mdoc_term.c,v retrieving revision 1.296 retrieving revision 1.297 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.296 -r1.297 --- mdoc_term.c +++ 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); } -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv