diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-16 19:50:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-16 19:50:03 +0000 |
commit | 1c5b69096dc052617e48d25e13d9e3875b100302 (patch) | |
tree | 1ca116182a16e4656a77c2394f30439aa9cb8f85 | |
parent | e1c08c7914e7b1c647c0cae72d139d9915fe1576 (diff) | |
download | mandoc-1c5b69096dc052617e48d25e13d9e3875b100302.tar.gz |
correct -Tutf8 and -Thtml rendering of \(~=
and change the name of \(-~ to \(|= to agree with groff;
difference found by Carsten dot Kunze at arcor dot de
-rw-r--r-- | chars.in | 4 | ||||
-rw-r--r-- | mandoc_char.7 | 10 |
2 files changed, 7 insertions, 7 deletions
@@ -281,10 +281,10 @@ CHAR("!=", "!=", 8800) CHAR("==", "==", 8801) CHAR("ne", "!==", 8802) CHAR("=~", "=~", 8773) -CHAR("-~", "-~", 8771) +CHAR("|=", "-~", 8771) CHAR("ap", "~", 8764) CHAR("~~", "~~", 8776) -CHAR("~=", "~=", 8780) +CHAR("~=", "~=", 8776) CHAR("pt", "oc", 8733) CHAR("es", "{}", 8709) CHAR("mo", "E", 8712) diff --git a/mandoc_char.7 b/mandoc_char.7 index 6deb1544..dd948151 100644 --- a/mandoc_char.7 +++ b/mandoc_char.7 @@ -369,11 +369,11 @@ Mathematical: .It \e(!= Ta \(!= Ta not equal .It \e(== Ta \(== Ta equivalent .It \e(ne Ta \(ne Ta not equivalent -.It \e(=~ Ta \(=~ Ta congruent -.It \e(-~ Ta \(-~ Ta asymptotically congruent -.It \e(ap Ta \(ap Ta asymptotically similar -.It \e(~~ Ta \(~~ Ta approximately similar -.It \e(~= Ta \(~= Ta approximately equal +.It \e(ap Ta \(ap Ta tilde operator +.It \e(|= Ta \(|= Ta asymptotically equal +.It \e(=~ Ta \(=~ Ta approximately equal +.It \e(~~ Ta \(~~ Ta almost equal +.It \e(~= Ta \(~= Ta almost equal .It \e(pt Ta \(pt Ta proportionate .It \e(es Ta \(es Ta empty set .It \e(mo Ta \(mo Ta element |