]> granicus.if.org Git - php/commitdiff
fix indentation + remove c++ comments
authorMárcio Almada <marcio3w@gmail.com>
Sat, 21 Mar 2015 21:17:14 +0000 (18:17 -0300)
committerMárcio Almada <marcio3w@gmail.com>
Thu, 30 Apr 2015 06:03:29 +0000 (03:03 -0300)
ext/tokenizer/tokenizer.c

index c0118944418b04b6e03a03ff120a2d0d8ab7012e..c4b9d14359fd91f6d079a13629f8c79fcd83e145 100644 (file)
@@ -104,7 +104,7 @@ static void tokenize(zval *return_value)
        int token_type;
        zend_bool destroy;
        int token_line = 1;
-       int need_tokens = -1; // for __halt_compiler lexing. -1 = disabled
+       int need_tokens = -1; /* for __halt_compiler lexing. -1 = disabled */
 
        array_init(return_value);
 
@@ -147,13 +147,13 @@ static void tokenize(zval *return_value)
                }
                ZVAL_NULL(&token);
 
-               // after T_HALT_COMPILER collect the next three non-dropped tokens
+               /* after T_HALT_COMPILER collect the next three non-dropped tokens */
                if (need_tokens != -1) {
                        if (token_type != T_WHITESPACE && token_type != T_OPEN_TAG
-                           && token_type != T_COMMENT && token_type != T_DOC_COMMENT
-                           && --need_tokens == 0
+                               && token_type != T_COMMENT && token_type != T_DOC_COMMENT
+                               && --need_tokens == 0
                        ) {
-                               // fetch the rest into a T_INLINE_HTML
+                               /* fetch the rest into a T_INLINE_HTML */
                                if (zendcursor != zendlimit) {
                                        array_init(&keyword);
                                        add_next_index_long(&keyword, T_INLINE_HTML);