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 c243f0c2; for ; Tue, 23 Dec 2014 05:10:15 -0500 (EST) Date: Tue, 23 Dec 2014 05:10:15 -0500 (EST) Message-Id: <6180528347855568054.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: fix typo in previous X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- fix typo in previous Modified Files: -------------- mdocml: mdoc_man.c Revision Data ------------- Index: mdoc_man.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/mdoc_man.c,v retrieving revision 1.78 retrieving revision 1.79 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.78 -r1.79 --- mdoc_man.c +++ mdoc_man.c @@ -434,7 +434,7 @@ print_offs(const char *v, int keywords) sz = 6; else if (keywords && !strcmp(v, "indent-two")) sz = 12; - else if (a2roffsu(v, &su, SCALE_EN) < 2) { + else if (a2roffsu(v, &su, SCALE_EN) > 1) { if (SCALE_EN == su.unit) sz = su.scale; else { @@ -481,7 +481,7 @@ print_width(const char *v, const struct /* Convert v into a number (of characters). */ if (NULL == v) sz = defsz; - else if (a2roffsu(v, &su, SCALE_MAX) < 2) { + else if (a2roffsu(v, &su, SCALE_MAX) > 1) { if (SCALE_EN == su.unit) sz = su.scale; else { -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv