summaryrefslogtreecommitdiffstats
path: root/chars.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-08-21 16:06:48 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-08-21 16:06:48 +0000
commit13eca495ce65af310d2aeaa717684ccbaa617070 (patch)
tree50bdff14e9147e1297986c9c00a6a100d7e3e096 /chars.c
parente09ab5e214ab66b3c06b5a2d97189910b20b8075 (diff)
downloadmandoc-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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/chars.c b/chars.c
index 668f77ef..ebc7cf91 100644
--- a/chars.c
+++ b/chars.c
@@ -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 },