aboutsummaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorDai Sato <satodai@w3m.jp>2012-05-22 09:45:56 +0000
committerDai Sato <satodai@w3m.jp>2012-05-22 09:45:56 +0000
commite7fe8d004d4cac5ae469fb2cd9ba16332d58a456 (patch)
treea69de9fbcc49a57887e6b402f1abca98b6364fe3 /html.c
parentcorrection: 0.5.2 -> 0.5.3 (diff)
downloadw3m-e7fe8d004d4cac5ae469fb2cd9ba16332d58a456.tar.gz
w3m-e7fe8d004d4cac5ae469fb2cd9ba16332d58a456.zip
parse META CHARSET
Diffstat (limited to '')
-rw-r--r--html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/html.c b/html.c
index 2359ca0..bca227e 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.32 2010/08/14 01:29:40 htrb Exp $ */
+/* $Id: html.c,v 1.33 2012/05/22 09:45:56 inu Exp $ */
#include "html.h"
/* Define HTML Tag Infomation Table */
@@ -37,8 +37,8 @@ unsigned char ALST_TABLE[] =
ATTR_CELLPADDING, ATTR_VSPACE, ATTR_CORE
};
#define MAXA_TABLE MAXA_CORE + 6
-unsigned char ALST_META[] = { ATTR_HTTP_EQUIV, ATTR_CONTENT, ATTR_CORE };
-#define MAXA_META MAXA_CORE + 2
+unsigned char ALST_META[] = { ATTR_HTTP_EQUIV, ATTR_CONTENT, ATTR_CHARSET, ATTR_CORE };
+#define MAXA_META MAXA_CORE + 3
unsigned char ALST_FRAME[] = { ATTR_SRC, ATTR_NAME, ATTR_CORE };
#define MAXA_FRAME MAXA_CORE + 2
unsigned char ALST_FRAMESET[] = { ATTR_COLS, ATTR_ROWS, ATTR_CORE };