diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-27 17:56:02 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-27 17:56:02 +0000 |
commit | d515bf1cfd0d1d61facc155927c45bdf1c29c4fb (patch) | |
tree | 2d05d032264a0ada2700074f370707dd7fd98376 /table.c | |
parent | [w3m-dev 02765] backend (diff) | |
download | w3m-d515bf1cfd0d1d61facc155927c45bdf1c29c4fb.tar.gz w3m-d515bf1cfd0d1d61facc155927c45bdf1c29c4fb.zip |
[w3m-dev 02769] <form>..</form> as block element
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.c,v 1.12 2001/12/17 16:05:03 ukai Exp $ */ +/* $Id: table.c,v 1.13 2001/12/27 17:56:03 ukai Exp $ */ /* * HTML table */ @@ -2786,9 +2786,11 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode, feed_table1(tbl, tok, mode, width); break; case HTML_FORM: + feed_table_block_tag(tbl, line, mode, 0, cmd); process_form(tag); break; case HTML_N_FORM: + feed_table_block_tag(tbl, line, mode, 0, cmd); process_n_form(); break; case HTML_INPUT: |