diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2022-06-26 20:30:01 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2022-06-26 20:30:01 +0000 |
commit | cadf5478ca8d5fbd0f9552c5d56690dcf4f10987 (patch) | |
tree | ce326e5b16d781dfebfa50d34a187f207fc62d69 /usr.bin/mandoc | |
parent | dc958b4454d36b047ab01eb70035481948c8aa57 (diff) |
In groff commit 78e66624 on May 7 20:15:33 2021 +1000,
G. Branden Robinson changed the -T ascii rendering
of \(sd, the "second" symbol, U+2033 DOUBLE PRIME, from '' to ".
Follow suit in mandoc.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/chars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/chars.c b/usr.bin/mandoc/chars.c index be81373a7f6..524a16ee79c 100644 --- a/usr.bin/mandoc/chars.c +++ b/usr.bin/mandoc/chars.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chars.c,v 1.50 2022/06/02 14:49:25 schwarze Exp $ */ +/* $OpenBSD: chars.c,v 1.51 2022/06/26 20:30:00 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011, 2014, 2015, 2017, 2018, 2020 @@ -362,7 +362,7 @@ static struct ln lines[] = { { "de", "<degree>", 0x00b0 }, { "%0", "<permille>", 0x2030 }, { "fm", "\'", 0x2032 }, - { "sd", "''", 0x2033 }, + { "sd", "\"", 0x2033 }, { "mc", "<micro>", 0x00b5 }, { "Of", "_\ba", 0x00aa }, { "Om", "_\bo", 0x00ba }, |