diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-21 16:06:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-21 16:06:48 +0000 |
commit | 13eca495ce65af310d2aeaa717684ccbaa617070 (patch) | |
tree | 50bdff14e9147e1297986c9c00a6a100d7e3e096 /chars.c | |
parent | e09ab5e214ab66b3c06b5a2d97189910b20b8075 (diff) | |
download | mandoc-13eca495ce65af310d2aeaa717684ccbaa617070.tar.gz |
Improve the ASCII rendering of \(Po (Pound Sterling)
and of the playing card suits to match groff, using feedback
from Ralph Corderoy <ralph at inputplus dot co dot uk>.
Diffstat (limited to 'chars.c')
-rw-r--r-- | chars.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -83,10 +83,10 @@ static struct ln lines[] = { { "sh", "#", 0x0023 }, { "CR", "<cr>", 0x21b5 }, { "OK", "\\/", 0x2713 }, - { "CL", "<club>", 0x2663 }, - { "SP", "<spade>", 0x2660 }, - { "HE", "<heart>", 0x2665 }, - { "DI", "<diamond>", 0x2666 }, + { "CL", "C", 0x2663 }, + { "SP", "S", 0x2660 }, + { "HE", "H", 0x2665 }, + { "DI", "D", 0x2666 }, /* Legal symbols. */ { "co", "(C)", 0x00a9 }, @@ -363,7 +363,7 @@ static struct ln lines[] = { { "Eu", "EUR", 0x20ac }, { "eu", "EUR", 0x20ac }, { "Ye", "=\bY", 0x00a5 }, - { "Po", "GBP", 0x00a3 }, + { "Po", "-\bL", 0x00a3 }, { "Cs", "o\bx", 0x00a4 }, { "Fn", ",\bf", 0x0192 }, |