aboutsummaryrefslogtreecommitdiffstats
path: root/table.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-12-03 15:49:52 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-12-03 15:49:52 +0000
commitb79390caab7600b8c49a0e26dffe1bd4d71b1a52 (patch)
treebc5187a5d92348e0dd9cecbbbb696ff0fa03ffa4 /table.c
parent[w3m-dev 03510] waiting time when cookie was rejected. (diff)
downloadw3m-b79390caab7600b8c49a0e26dffe1bd4d71b1a52.tar.gz
w3m-b79390caab7600b8c49a0e26dffe1bd4d71b1a52.zip
[w3m-dev 03512] Re: HTML parser
* table.c (feed_table_tag): HTML_N_SELECT, HTML_N_CAPTION From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'table.c')
-rw-r--r--table.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/table.c b/table.c
index 7d01674..5065eaf 100644
--- a/table.c
+++ b/table.c
@@ -1,4 +1,4 @@
-/* $Id: table.c,v 1.33 2002/12/03 15:45:34 ukai Exp $ */
+/* $Id: table.c,v 1.34 2002/12/03 15:49:56 ukai Exp $ */
/*
* HTML table
*/
@@ -2521,6 +2521,8 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
case HTML_N_FORM:
case HTML_N_SELECT: /* mode->end_tag */
table_close_select(tbl, mode, width);
+ if (cmd == HTML_N_SELECT)
+ return TAG_ACTION_NONE;
break;
default:
return TAG_ACTION_FEED;
@@ -2531,6 +2533,8 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
CASE_TABLE_TAG:
case HTML_N_CAPTION:
mode->caption = 0;
+ if (cmd == HTML_N_CAPTION)
+ return TAG_ACTION_NONE;
break;
default:
return TAG_ACTION_FEED;
@@ -2920,6 +2924,7 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
mode->pre_mode |= TBLM_INSELECT;
mode->end_tag = HTML_N_SELECT;
break;
+ case HTML_N_SELECT:
case HTML_OPTION:
/* nothing */
break;
@@ -3014,6 +3019,7 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode,
case HTML_CAPTION:
mode->caption = 1;
break;
+ case HTML_N_CAPTION:
case HTML_THEAD:
case HTML_N_THEAD:
case HTML_TBODY: