From: schwarze Date: Sun, 19 Aug 2018 23:47:43 +0000 (+0000) Subject: Add the \) special character, a variant of \& so arcane that i X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7d85ae0a7a7077aa7aa0b83d5d520d3a792808ea;p=openbsd Add the \) special character, a variant of \& so arcane that i intentionally leave it undocumented. Abused for example in the groff(7) manual page. --- diff --git a/usr.bin/mandoc/chars.c b/usr.bin/mandoc/chars.c index 403f54571ec..d6f5f78d0e9 100644 --- a/usr.bin/mandoc/chars.c +++ b/usr.bin/mandoc/chars.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chars.c,v 1.43 2017/08/23 13:01:22 schwarze Exp $ */ +/* $OpenBSD: chars.c,v 1.44 2018/08/19 23:47:43 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze @@ -48,6 +48,7 @@ static struct ln lines[] = { { "|", "", 0 }, { "^", "", 0 }, { "&", "", 0 }, + { ")", "", 0 }, { "%", "", 0 }, { ":", ascii_break, 0 }, /* XXX The following three do not really belong here. */