From 30c726cfba566b15556fba86a9f3b6d63455408f Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Tue, 8 Dec 2009 16:32:26 +0000 Subject: [PATCH] ws --- Zend/zend_highlight.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Zend/zend_highlight.c b/Zend/zend_highlight.c index bbce890153..a4596d9a52 100644 --- a/Zend/zend_highlight.c +++ b/Zend/zend_highlight.c @@ -131,7 +131,7 @@ ZEND_API void zend_highlight(zend_syntax_highlighter_ini *syntax_highlighter_ini zend_html_puts(LANG_SCNG(yy_text), LANG_SCNG(yy_leng) TSRMLS_CC); if (Z_TYPE(token) == IS_STRING || - Z_TYPE(token) == IS_UNICODE) { + Z_TYPE(token) == IS_UNICODE) { switch (token_type) { case T_OPEN_TAG: case T_OPEN_TAG_WITH_ECHO: @@ -185,7 +185,7 @@ ZEND_API void zend_strip(TSRMLS_D) /* {{{ */ /* read the following character, either newline or ; */ if (lex_scan(&token TSRMLS_CC) != T_WHITESPACE) { zend_write(LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); - } + } zend_write("\n", sizeof("\n") - 1); prev_space = 1; Z_TYPE(token) = 0; @@ -197,7 +197,7 @@ ZEND_API void zend_strip(TSRMLS_D) /* {{{ */ } if (Z_TYPE(token) == IS_STRING || - Z_TYPE(token) == IS_UNICODE) { + Z_TYPE(token) == IS_UNICODE) { switch (token_type) { case T_OPEN_TAG: case T_OPEN_TAG_WITH_ECHO: -- 2.50.1