diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-07-27 10:30:27 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-07-27 10:30:27 -0400 |
commit | 86559293db5f4248cafdbe289508e764904bcb9c (patch) | |
tree | 03970560ed77ec40e561b2ffb91d4dce78c36559 /WWW/Library | |
parent | eef116fe0730b92d09314c3fae280eeed40b096a (diff) | |
download | lynx-snapshots-86559293db5f4248cafdbe289508e764904bcb9c.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-42
Diffstat (limited to 'WWW/Library')
-rw-r--r-- | WWW/Library/Implementation/HTMLDTD.c | 2 | ||||
-rw-r--r-- | WWW/Library/Implementation/SGML.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTMLDTD.c b/WWW/Library/Implementation/HTMLDTD.c index d8594d0a..0466e8ba 100644 --- a/WWW/Library/Implementation/HTMLDTD.c +++ b/WWW/Library/Implementation/HTMLDTD.c @@ -1597,7 +1597,7 @@ static HTTag tags_old[HTML_ELEMENTS] = { { "THEAD" , tr_attr, HTML_TR_ATTRIBUTES, SGML_EMPTY,T_THEAD}, { "TITLE", gen_attr, HTML_GEN_ATTRIBUTES, SGML_RCDATA,T_TITLE}, { "TR" , tr_attr, HTML_TR_ATTRIBUTES, SGML_EMPTY,T_TR}, - { "TT" , gen_attr, HTML_GEN_ATTRIBUTES, SGML_MIXED,T_TT}, + { "TT" , gen_attr, HTML_GEN_ATTRIBUTES, SGML_EMPTY,T_TT}, { "U" , gen_attr, HTML_GEN_ATTRIBUTES, SGML_EMPTY,T_U}, { "UL" , ulist_attr, HTML_UL_ATTRIBUTES, SGML_MIXED,T_UL}, { "VAR" , gen_attr, HTML_GEN_ATTRIBUTES, SGML_MIXED,T_VAR}, diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c index 6e8edf75..9c607da3 100644 --- a/WWW/Library/Implementation/SGML.c +++ b/WWW/Library/Implementation/SGML.c @@ -2232,6 +2232,7 @@ top1: !strcasecomp(string->data, "FORM") || !strcasecomp(string->data, "I") || !strcasecomp(string->data, "STRONG") || + !strcasecomp(string->data, "TT") || !strcasecomp(string->data, "U"))) { /* ** Handle end tags for container elements declared |