diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-23 17:57:10 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-23 17:57:10 +0000 | 
| commit | 0e3d9e6a6ffc667584e99cbb27cd419f36abc56d (patch) | |
| tree | 4bbdabd4e0da08cf5a598cdff29fcba681db052a | |
| parent | [w3m-dev 02894] Re: goURL (diff) | |
| download | w3m-0e3d9e6a6ffc667584e99cbb27cd419f36abc56d.tar.gz w3m-0e3d9e6a6ffc667584e99cbb27cd419f36abc56d.zip | |
[w3m-dev 02896] fid attr value should be in sequence
* table.c (feed_table_tag): s/line/""/ for HTML_FORM,HTML_N_FORM
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | table.c | 6 | 
2 files changed, 9 insertions, 4 deletions
| @@ -1,5 +1,10 @@  2002-01-24  Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> +	* [w3m-dev 02896] fid attr value should be in sequence +	* table.c (feed_table_tag): s/line/""/ for HTML_FORM,HTML_N_FORM + +2002-01-24  Hironori Sakamoto <hsaka@mth.biglobe.ne.jp> +  	* [w3m-dev 02894] Re: goURL  	* file.c (HTMLtagproc1): s/goURL/gorURL/  	* keybind.c (EscKeymap): M-u = GOTO_RELATIVE @@ -2237,4 +2242,4 @@  	* release-0-2-1  	* import w3m-0.2.1 -$Id: ChangeLog,v 1.254 2002/01/23 17:19:47 ukai Exp $ +$Id: ChangeLog,v 1.255 2002/01/23 17:57:10 ukai Exp $ @@ -1,4 +1,4 @@ -/* $Id: table.c,v 1.13 2001/12/27 17:56:03 ukai Exp $ */ +/* $Id: table.c,v 1.14 2002/01/23 17:57:10 ukai Exp $ */  /*    * HTML table   */ @@ -2786,11 +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); +	feed_table_block_tag(tbl, "", mode, 0, cmd);  	process_form(tag);  	break;      case HTML_N_FORM: -	feed_table_block_tag(tbl, line, mode, 0, cmd); +	feed_table_block_tag(tbl, "", mode, 0, cmd);  	process_n_form();  	break;      case HTML_INPUT: | 
