From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s7CJSH6l004515 for ; Tue, 12 Aug 2014 15:28:17 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s7CJSHjp005769; Tue, 12 Aug 2014 15:28:17 -0400 (EDT) Date: Tue, 12 Aug 2014 15:28:17 -0400 (EDT) Message-Id: <201408121928.s7CJSHjp005769@krisdoz.my.domain> 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: In mdoc(7) and man(7), if a width is given as a bare number X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- In mdoc(7) and man(7), if a width is given as a bare number without specifying a unit, the implied unit is 'n' (on the terminal, one character position; in PostScript, half of the current font size in points), not 'u' (roff output device basic unit). No functional change right now, but important for the upcoming scaling unit fixes. Modified Files: -------------- mdocml: out.c Revision Data ------------- Index: out.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/out.c,v retrieving revision 1.50 retrieving revision 1.51 diff -Lout.c -Lout.c -u -p -r1.50 -r1.51 --- out.c +++ out.c @@ -110,7 +110,7 @@ a2roffsu(const char *src, struct roffsu case '\0': if (SCALE_MAX == def) return(0); - unit = SCALE_BU; + unit = SCALE_EN; break; case 'u': unit = SCALE_BU; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv