aboutsummaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-02-13 20:49:25 +0000
committerbptato <nincsnevem662@gmail.com>2021-02-13 20:49:25 +0000
commitc8eb20b9510221172879e698b76dcd32238b378b (patch)
tree4d0ea51de027e9ee67b3e96c813a1306f4635e86 /html.c
parentNested <dl>s (diff)
downloadw3m-c8eb20b9510221172879e698b76dcd32238b378b.tar.gz
w3m-c8eb20b9510221172879e698b76dcd32238b378b.zip
Fix a mistake I made with </dd> and </dt> tags
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/html.c b/html.c
index 5d25cd3..3573ef6 100644
--- a/html.c
+++ b/html.c
@@ -275,9 +275,8 @@ TagInfo TagMAP[MAX_HTMLTAG] = {
{"section", ALST_NOP, MAXA_NOP, 0}, /* 145 HTML_SECTION */
{"/section", NULL, 0, TFLG_END}, /* 146 HTML_N_SECTION */
{"/dt", NULL, 0, TFLG_END}, /* 147 HTML_N_DT */
- {"/dd", NULL, 0, TFLG_END}, /* 147 HTML_N_DD */
+ {"/dd", NULL, 0, TFLG_END}, /* 148 HTML_N_DD */
- {NULL, NULL, 0, 0}, /* 148 Undefined */
{NULL, NULL, 0, 0}, /* 149 Undefined */
{NULL, NULL, 0, 0}, /* 150 Undefined */
{NULL, NULL, 0, 0}, /* 151 Undefined */