diff options
author | Ambrose Li <ambrose.li@gmail.com> | 2020-08-29 19:23:36 +0000 |
---|---|---|
committer | Ambrose Li <ambrose.li@gmail.com> | 2020-08-29 19:23:36 +0000 |
commit | b9488ffe60963349bf622a7548e3b9dccc6e0728 (patch) | |
tree | ba10b68db484a2ece59738e9e341d623ee010062 /file.c | |
parent | Cleaned version of 20200823_q branch. Changes the behaviour of the q tag (whe... (diff) | |
download | w3m-b9488ffe60963349bf622a7548e3b9dccc6e0728.tar.gz w3m-b9488ffe60963349bf622a7548e3b9dccc6e0728.zip |
Somehow the wrong quotes were used. This should fix the failing tests.
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |