From: schwarze Date: Sun, 26 Jun 2022 20:30:00 +0000 (+0000) Subject: In groff commit 78e66624 on May 7 20:15:33 2021 +1000, X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9ea9ce09abaa9b8692b9bdd5f857371a3bac69c4;p=openbsd 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. --- diff --git a/regress/usr.bin/mandoc/char/unicode/named.out_ascii b/regress/usr.bin/mandoc/char/unicode/named.out_ascii index 41d4c87c174..f01a6a829d8 100644 --- a/regress/usr.bin/mandoc/char/unicode/named.out_ascii +++ b/regress/usr.bin/mandoc/char/unicode/named.out_ascii @@ -87,7 +87,7 @@ DDEESSCCRRIIPPTTIIOONN +o+o BULLET PER MILLE SIGN '' PRIME - '''' DOUBLE PRIME + "" DOUBLE PRIME << SINGLE LEFT-POINTING ANGLE QUOTATION MARK >> SINGLE RIGHT-POINTING ANGLE QUOTATION MARK // FRACTION SLASH 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 * Copyright (c) 2011, 2014, 2015, 2017, 2018, 2020 @@ -362,7 +362,7 @@ static struct ln lines[] = { { "de", "", 0x00b0 }, { "%0", "", 0x2030 }, { "fm", "\'", 0x2032 }, - { "sd", "''", 0x2033 }, + { "sd", "\"", 0x2033 }, { "mc", "", 0x00b5 }, { "Of", "_\ba", 0x00aa }, { "Om", "_\bo", 0x00ba },