about summary refs log tree commit diff stats
path: root/WWW/Library
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2008-09-10 14:03:11 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2008-09-10 14:03:11 -0400
commitb64489ef364361173db889faaf608495b887edf2 (patch)
tree4765b0d37392e038d69f068e646cceec34ce4c4e /WWW/Library
parent67b10f416009d4334c0a494a46235d284675fa2d (diff)
downloadlynx-snapshots-b64489ef364361173db889faaf608495b887edf2.tar.gz
snapshot of project "lynx", label v2-8-7dev_9k
Diffstat (limited to 'WWW/Library')
-rw-r--r--WWW/Library/Implementation/SGML.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c
index 6b3863d0..51e7895b 100644
--- a/WWW/Library/Implementation/SGML.c
+++ b/WWW/Library/Implementation/SGML.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: SGML.c,v 1.110 2008/09/06 14:44:04 tom Exp $
+ * $LynxId: SGML.c,v 1.114 2008/09/10 12:56:58 tom Exp $
  *
  *			General SGML Parser code		SGML.c
  *			========================
@@ -1534,7 +1534,10 @@ static BOOL ignore_when_empty(HTTag * tag)
 {
     BOOL result = FALSE;
 
-    if (tag->name != 0
+    if (!LYPreparsedSource
+	&& LYxhtml_parsing
+	&& tag->name != 0
+	&& !(tag->flags & Tgf_mafse)
 	&& tag->contents != SGML_EMPTY
 	&& tag->tagclass != Tgc_Plike
 	&& (tag->tagclass == Tgc_SELECTlike
@@ -1549,15 +1552,14 @@ static BOOL ignore_when_empty(HTTag * tag)
 
 static void discard_empty(HTStream *context)
 {
+    static HTTag empty_tag;
+
     CTRACE((tfp, "SGML discarding empty %s\n",
 	    NonNull(context->current_tag->name)));
     CTRACE_FLUSH(tfp);
 
-    /* disable start_element() */
-    context->current_tag->name = 0;
-
-    /* these may be redundant: */
-    context->current_tag->contents = SGML_EMPTY;
+    memset(&empty_tag, 0, sizeof(empty_tag));
+    context->current_tag = &empty_tag;
     context->string->size = 0;
 
     /* do not call end_element() if start_element() was not called */
@@ -3854,7 +3856,6 @@ static void SGML_character(HTStream *context, char c_in)
 	    HTChunkTerminate(string);
 #ifdef USE_PRETTYSRC
 	    if (psrc_view) {
-		/*PSRCSTART(attrval); */
 		if (attr_is_name) {
 		    HTStartAnchor(context->target, string->data, NULL);
 		    (*context->actions->end_element) (context->target,