Issue #392 - a simple fix, but maybe incomplete

This commit is contained in:
Geoff McLane 2017-05-21 00:18:43 +02:00
parent 9b2cd06711
commit 6f05041b5e

View file

@ -1935,6 +1935,8 @@ static Bool TY_(nodeIsTextLike)( Node *node )
return yes;
if ( node->type == AspTag )
return yes;
if (node->type == PhpTag)
return yes; /* Issue #392 */
/* add other text like nodes... */
return no;
}