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 6f026fec for ; Thu, 5 Apr 2018 03:47:47 -0500 (EST) Date: Thu, 5 Apr 2018 03:47:47 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: For .Do/.Dq, use the documented and portable \(lq and \(rq X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: <84f53488a5a01e35@fantadrom.bsd.lv> Log Message: ----------- For .Do/.Dq, use the documented and portable \(lq and \(rq character escape sequences rather than the undocumented and non-portable \(Lq and \(Rq. Bug reported by Tim L via Thomas Klausner ; see https://github.com/nih-at/libzip/pull/42 Modified Files: -------------- mandoc: mdoc_man.c Revision Data ------------- Index: mdoc_man.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_man.c,v retrieving revision 1.123 retrieving revision 1.124 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.123 -r1.124 --- mdoc_man.c +++ mdoc_man.c @@ -202,8 +202,8 @@ static const struct manact __manacts[MDO { NULL, pre_bk, post_bk, NULL, NULL }, /* Bx */ { NULL, pre_skip, NULL, NULL, NULL }, /* Db */ { NULL, NULL, NULL, NULL, NULL }, /* Dc */ - { cond_body, pre_enc, post_enc, "\\(Lq", "\\(Rq" }, /* Do */ - { cond_body, pre_enc, post_enc, "\\(Lq", "\\(Rq" }, /* Dq */ + { cond_body, pre_enc, post_enc, "\\(lq", "\\(rq" }, /* Do */ + { cond_body, pre_enc, post_enc, "\\(lq", "\\(rq" }, /* Dq */ { NULL, NULL, NULL, NULL, NULL }, /* Ec */ { NULL, NULL, NULL, NULL, NULL }, /* Ef */ { NULL, pre_em, post_font, NULL, NULL }, /* Em */ -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv