From b9488ffe60963349bf622a7548e3b9dccc6e0728 Mon Sep 17 00:00:00 2001 From: Ambrose Li Date: Sat, 29 Aug 2020 15:23:36 -0400 Subject: Somehow the wrong quotes were used. This should fix the failing tests. --- file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file.c b/file.c index cf7a931..6011cf2 100644 --- a/file.c +++ b/file.c @@ -4490,7 +4490,7 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) #ifdef USE_M17N #ifdef USE_UNICODE if (DisplayCharset != WC_CES_US_ASCII) { - HTMLlineproc1((obuf->q_level & 1 ? "“": "‘"), h_env); + HTMLlineproc1((obuf->q_level & 1 ? "‘": "“"), h_env); obuf->q_level += 1; } else @@ -4503,7 +4503,7 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) #ifdef USE_UNICODE if (DisplayCharset != WC_CES_US_ASCII) { obuf->q_level -= 1; - HTMLlineproc1((obuf->q_level & 1 ? "”": "’"), h_env); + HTMLlineproc1((obuf->q_level & 1 ? "’": "”"), h_env); } else #endif -- cgit v1.2.3