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 95c57292 for ; Sun, 19 Aug 2018 18:49:06 -0500 (EST) Date: Sun, 19 Aug 2018 18:49:06 -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: Add the \) special character, a variant of \& so arcane that i X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- Add the \) special character, a variant of \& so arcane that i intentionally leave it undocumented. Abused for example in the groff(7) manual page. Modified Files: -------------- mandoc: chars.c Revision Data ------------- Index: chars.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/chars.c,v retrieving revision 1.73 retrieving revision 1.74 diff -Lchars.c -Lchars.c -u -p -r1.73 -r1.74 --- chars.c +++ chars.c @@ -50,6 +50,7 @@ static struct ln lines[] = { { "|", "", 0 }, { "^", "", 0 }, { "&", "", 0 }, + { ")", "", 0 }, { "%", "", 0 }, { ":", ascii_break, 0 }, /* XXX The following three do not really belong here. */ -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv