diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-08-19 23:47:44 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-08-19 23:47:44 +0000 |
commit | d750aeb44a81e81d2e53deb875936917e114044d (patch) | |
tree | 4f80066786986886aa722469bfd3bb1a12600844 /usr.bin/mandoc/chars.c | |
parent | ed95bcab13ea948995245cb9c8009fe7f29aa55c (diff) |
Add the \) special character, a variant of \& so arcane that i
intentionally leave it undocumented. Abused for example in the
groff(7) manual page.
Diffstat (limited to 'usr.bin/mandoc/chars.c')
-rw-r--r-- | usr.bin/mandoc/chars.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 <kristaps@bsd.lv> * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -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. */ |