From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id o6QMZxAK000016 for ; Mon, 26 Jul 2010 18:36:00 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id o6QMZxLe027381; Mon, 26 Jul 2010 18:35:59 -0400 (EDT) Date: Mon, 26 Jul 2010 18:35:59 -0400 (EDT) Message-Id: <201007262235.o6QMZxLe027381@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: `Ad' is supposed to underline. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- `Ad' is supposed to underline. Found whilst trolling through manuals. Modified Files: -------------- mdocml: example.style.css mdoc_term.c Revision Data ------------- Index: mdoc_term.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v retrieving revision 1.177 retrieving revision 1.178 diff -Lmdoc_term.c -Lmdoc_term.c -u -p -r1.177 -r1.178 --- mdoc_term.c +++ mdoc_term.c @@ -151,7 +151,7 @@ static const struct termact termacts[MDO { termp_bl_pre, termp_bl_post }, /* Bl */ { NULL, NULL }, /* El */ { termp_it_pre, termp_it_post }, /* It */ - { NULL, NULL }, /* Ad */ + { termp_under_pre, NULL }, /* Ad */ { termp_an_pre, termp_an_post }, /* An */ { termp_under_pre, NULL }, /* Ar */ { termp_cd_pre, NULL }, /* Cd */ Index: example.style.css =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/example.style.css,v retrieving revision 1.20 retrieving revision 1.21 diff -Lexample.style.css -Lexample.style.css -u -p -r1.20 -r1.21 --- example.style.css +++ example.style.css @@ -11,7 +11,7 @@ div.ssec-head { font-weight: bold; font- div.ssec-body { } div.ssec-block { } -span.addr { } /* Address (Ad). */ +span.addr { font-style: italic; font-weight: normal; } /* Address (Ad). */ span.arg { font-style: italic; font-weight: normal; } /* Command argument (Ar). */ span.author { } /* Author name (An). */ span.bold { font-weight: bold; font-style: normal; } /* Generically bold (SB, BI, IB, BR, RB, B). */ -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv