From 7d85ae0a7a7077aa7aa0b83d5d520d3a792808ea Mon Sep 17 00:00:00 2001 From: schwarze Date: Sun, 19 Aug 2018 23:47:43 +0000 Subject: [PATCH] Add the \) special character, a variant of \& so arcane that i intentionally leave it undocumented. Abused for example in the groff(7) manual page. --- usr.bin/mandoc/chars.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. */ -- 2.20.1