diff --git a/src/pprint.c b/src/pprint.c index 9106396..68e8d44 100644 --- a/src/pprint.c +++ b/src/pprint.c @@ -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; }