diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-19 23:48:36 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-19 23:48:36 +0000 |
commit | 65d79f43a75aae96480bb1dcefe3f5f56facbbe3 (patch) | |
tree | 697201152525e31d26218ad4b1e1c7a94719fc3e /chars.c | |
parent | 846ac498a5f1d090aec395a1097c916f40fc0c25 (diff) | |
download | mandoc-65d79f43a75aae96480bb1dcefe3f5f56facbbe3.tar.gz |
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 'chars.c')
-rw-r--r-- | chars.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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. */ |