aboutsummaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-10-16 18:11:15 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-10-16 18:11:15 +0000
commiteca32d1b71cc1c94e492c87f708137a491ae8214 (patch)
tree32eb6560151d6881527746bc48b03eceaed44520 /html.c
parent [w3m-dev 03339] Re: Debian Bug#164098 w3m: <sup> is not properly supported (diff)
downloadw3m-eca32d1b71cc1c94e492c87f708137a491ae8214.tar.gz
w3m-eca32d1b71cc1c94e492c87f708137a491ae8214.zip
[w3m-dev 03341] white space is needed to close an empty-element tag
* parsetagx.c (parse_tag): extract tagname until '/' From: Daiki Ueno <ueno@unixuser.org>
Diffstat (limited to 'html.c')
-rw-r--r--html.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/html.c b/html.c
index 9d0be18..55b6762 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.13 2002/10/10 16:59:33 ukai Exp $ */
+/* $Id: html.c,v 1.14 2002/10/16 18:11:15 ukai Exp $ */
#include "html.h"
/* Define HTML Tag Infomation Table */
@@ -216,10 +216,10 @@ TagInfo TagMAP[MAX_HTMLTAG] = {
{"noframes", ALST_NOFRAMES, MAXA_NOFRAMES, 0}, /* 98 HTML_NOFRAMES */
{"/noframes", NULL, 0, TFLG_END}, /* 99 HTML_N_NOFRAMES */
- {"sup", NULL, 0, 0}, /* 100 HTML_SUP */
- {"/sup", NULL, 0, 0}, /* 101 HTML_N_SUP */
- {"sub", NULL, 0, 0}, /* 102 HTML_SUB */
- {"/sub", NULL, 0, 0}, /* 103 HTML_N_SUB */
+ {"sup", NULL, 0, 0}, /* 100 HTML_SUP */
+ {"/sup", NULL, 0, 0}, /* 101 HTML_N_SUP */
+ {"sub", NULL, 0, 0}, /* 102 HTML_SUB */
+ {"/sub", NULL, 0, 0}, /* 103 HTML_N_SUB */
{NULL, NULL, 0, 0}, /* 104 Undefined */
{NULL, NULL, 0, 0}, /* 105 Undefined */