diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-05 22:52:26 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-05 22:52:26 +0000 |
commit | 9b7b3896381522f1b70c8e7d803db8103cccd7a1 (patch) | |
tree | 4ba8face05ba92aa301627ee2f1709494b7f4fad /src/LYCharUtils.c | |
parent | 2c91be6158b3242e323e3c52fd585d0658cbf4be (diff) | |
download | lynx-snapshots-9b7b3896381522f1b70c8e7d803db8103cccd7a1.tar.gz |
snapshot of project "lynx", label v2-8-9dev_16o
Diffstat (limited to 'src/LYCharUtils.c')
-rw-r--r-- | src/LYCharUtils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LYCharUtils.c b/src/LYCharUtils.c index caeac733..12c50a08 100644 --- a/src/LYCharUtils.c +++ b/src/LYCharUtils.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCharUtils.c,v 1.130 2017/07/02 19:54:30 tom Exp $ + * $LynxId: LYCharUtils.c,v 1.131 2018/03/05 22:32:14 tom Exp $ * * Functions associated with LYCharSets.c and the Lynx version of HTML.c - FM * ========================================================================== @@ -540,7 +540,7 @@ void LYAddMETAcharsetToStream(HTStream *target, int disp_chndl) disp_chndl = current_char_set; if (target != 0 && disp_chndl >= 0) { - HTSprintf0(&buf, "<META %s content=\"text/html;charset=%s\">\n", + HTSprintf0(&buf, "<META %s content=\"" STR_HTML ";charset=%s\">\n", "http-equiv=\"content-type\"", LYCharSet_UC[disp_chndl].MIMEname); (*target->isa->put_string) (target, buf); @@ -605,7 +605,7 @@ void LYAddMETAcharsetToFD(FILE *fd, int disp_chndl) * during the lifetime of the file (by toggling raw mode or changing the * display character set), so proceed. */ - fprintf(fd, "<META %s content=\"text/html;charset=%s\">\n", + fprintf(fd, "<META %s content=\"" STR_HTML ";charset=%s\">\n", "http-equiv=\"content-type\"", LYCharSet_UC[disp_chndl].MIMEname); } |