In groff commit 78e66624 on May 7 20:15:33 2021 +1000,
authorschwarze <schwarze@openbsd.org>
Sun, 26 Jun 2022 20:30:00 +0000 (20:30 +0000)
committerschwarze <schwarze@openbsd.org>
Sun, 26 Jun 2022 20:30:00 +0000 (20:30 +0000)
G. Branden Robinson changed the -T ascii rendering
of \(sd, the "second" symbol, U+2033 DOUBLE PRIME, from '' to ".
Follow suit in mandoc.

regress/usr.bin/mandoc/char/unicode/named.out_ascii
usr.bin/mandoc/chars.c

index 41d4c87..f01a6a8 100644 (file)
@@ -87,7 +87,7 @@ D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN
        +\bo+\bo   BULLET
        <permille><permille>     PER MILLE SIGN
        ''   PRIME
-       '''' DOUBLE PRIME
+       ""   DOUBLE PRIME
        <<   SINGLE LEFT-POINTING ANGLE QUOTATION MARK
        >>   SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
        //   FRACTION SLASH
index be81373..524a16e 100644 (file)
@@ -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  },