From 6f05041b5ea6d0e840a9b49de025396a287c8ca8 Mon Sep 17 00:00:00 2001 From: Geoff McLane Date: Sun, 21 May 2017 00:18:43 +0200 Subject: [PATCH] Issue #392 - a simple fix, but maybe incomplete --- src/pprint.c | 2 ++ 1 file changed, 2 insertions(+) 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; }