Correct indentation.
authorChristoph Mallon <christoph.mallon@gmx.de>
Wed, 20 Jun 2012 13:43:28 +0000 (15:43 +0200)
committerChristoph Mallon <christoph.mallon@gmx.de>
Wed, 20 Jun 2012 19:52:08 +0000 (21:52 +0200)
preprocessor.c

index 47275a1..ca874c9 100644 (file)
@@ -954,50 +954,50 @@ restart:
        case '/':
                MAYBE_PROLOG
                MAYBE('=', T_SLASHEQUAL)
-                       case '*':
-                               next_char();
-                               info.had_whitespace = true;
-                               skip_multiline_comment();
-                               goto restart;
-                       case '/':
-                               next_char();
-                               info.had_whitespace = true;
-                               skip_line_comment();
-                               goto restart;
+               case '*':
+                       next_char();
+                       info.had_whitespace = true;
+                       skip_multiline_comment();
+                       goto restart;
+               case '/':
+                       next_char();
+                       info.had_whitespace = true;
+                       skip_line_comment();
+                       goto restart;
                ELSE('/')
        case '%':
                MAYBE_PROLOG
                MAYBE('>', '}')
                MAYBE('=', T_PERCENTEQUAL)
-                       case ':':
+               case ':':
+                       MAYBE_PROLOG
+                       case '%':
                                MAYBE_PROLOG
-                                       case '%':
-                                               MAYBE_PROLOG
-                                               MAYBE(':', T_HASHHASH)
-                                               ELSE_CODE(
-                                                       put_back(input.c);
-                                                       input.c = '%';
-                                                       pp_token.kind = '#';
-                                               )
-                               ELSE('#')
+                               MAYBE(':', T_HASHHASH)
+                               ELSE_CODE(
+                                       put_back(input.c);
+                                       input.c = '%';
+                                       pp_token.kind = '#';
+                               )
+                       ELSE('#')
                ELSE('%')
        case '<':
                MAYBE_PROLOG
                MAYBE(':', '[')
                MAYBE('%', '{')
                MAYBE('=', T_LESSEQUAL)
-                       case '<':
-                               MAYBE_PROLOG
-                               MAYBE('=', T_LESSLESSEQUAL)
-                               ELSE(T_LESSLESS)
+               case '<':
+                       MAYBE_PROLOG
+                       MAYBE('=', T_LESSLESSEQUAL)
+                       ELSE(T_LESSLESS)
                ELSE('<')
        case '>':
                MAYBE_PROLOG
                MAYBE('=', T_GREATEREQUAL)
-                       case '>':
-                               MAYBE_PROLOG
-                               MAYBE('=', T_GREATERGREATEREQUAL)
-                               ELSE(T_GREATERGREATER)
+               case '>':
+                       MAYBE_PROLOG
+                       MAYBE('=', T_GREATERGREATEREQUAL)
+                       ELSE(T_GREATERGREATER)
                ELSE('>')
        case '^':
                MAYBE_PROLOG