]> granicus.if.org Git - php/commitdiff
ws
authorJani Taskinen <jani@php.net>
Tue, 8 Dec 2009 16:32:26 +0000 (16:32 +0000)
committerJani Taskinen <jani@php.net>
Tue, 8 Dec 2009 16:32:26 +0000 (16:32 +0000)
Zend/zend_highlight.c

index bbce890153cc00f2cd8871e0167905ad14e9e4c8..a4596d9a52798b54d1f9b08c4e43de87f2aa993d 100644 (file)
@@ -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: