tigger[src-144]>diff -c {.,Orig}/gtkhtml-1.1.6/src/htmltokenizer.c
*** ./gtkhtml-1.1.6/src/htmltokenizer.c	Thu May 29 21:49:10 2003
--- Orig/gtkhtml-1.1.6/src/htmltokenizer.c	Tue Oct 15 12:27:50 2002
***************
*** 873,882 ****
  			/* Insert plain char */
  			if (entityValue != TAG_ESCAPE)
  				add_unichar (t, entityValue);
! 			if (**src == ';') {
! 				p->searchCount = 0;
  				(*src)++;
- 			}
  		}
  		else {
  			/* Ignore the sequence, just add it as plaintext */
--- 873,880 ----
  			/* Insert plain char */
  			if (entityValue != TAG_ESCAPE)
  				add_unichar (t, entityValue);
! 			if (**src == ';')
  				(*src)++;
  		}
  		else {
  			/* Ignore the sequence, just add it as plaintext */
***************
*** 1117,1123 ****
  {
  	/* We treat ' and " the same in tags " */
  	t->priv->discard = NoneDiscard;
- 	t->priv->pending = NonePending;
  	if (t->priv->tag) {
  		t->priv->searchCount = 0; /* Stop looking for <!-- sequence */
  		if ((t->priv->tquote == SINGLE_QUOTE && **src == '\"') /* match " */
--- 1115,1120 ----