diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-25 16:39:52 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-25 16:39:52 +0000 |
commit | d7b9195c5cf53fc7f0357a69f2651d61ff010fba (patch) | |
tree | ec25a26a0d8a37ff2de82a75d6cb34a5fc410f96 /table.h | |
parent | update TODO (diff) | |
download | w3m-d7b9195c5cf53fc7f0357a69f2651d61ff010fba.tar.gz w3m-d7b9195c5cf53fc7f0357a69f2651d61ff010fba.zip |
[w3m-dev 03476] Re: Bug#170506: w3m: Unable to use mozilla bugzilla
* file.c (HTMLtagproc1): initialize ignore_tag in table_mode
(HTMLtagproc0): check table_level
* table.c (feed_table_tag): set mode->ignore_tag
* table.h (struct table_mode): add ignore_tag
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | table.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.h,v 1.7 2002/11/15 16:00:34 ukai Exp $ */ +/* $Id: table.h,v 1.8 2002/11/25 16:39:53 ukai Exp $ */ #if (defined(MESCHACH) && !defined(MATRIX)) #define MATRIX #endif /* (defined(MESCHACH) && !defined(MATRIX)) */ @@ -139,6 +139,7 @@ struct table_mode { short nobr_offset; char nobr_level; short anchor_offset; + Str ignore_tag; }; /* Local Variables: */ |