dquote_static.c: White-space only
authorKarl Williamson <public@khwilliamson.com>
Wed, 5 Feb 2014 22:42:35 +0000 (15:42 -0700)
committerKarl Williamson <public@khwilliamson.com>
Wed, 5 Feb 2014 22:47:05 +0000 (15:47 -0700)
Outdent code whose surrounding block was removed by the previous commit

dquote_static.c

index 76fb86d..4eaa4b1 100644 (file)
@@ -70,18 +70,18 @@ S_grok_bslash_c(pTHX_ const char source, const bool output_warning)
     if (output_warning && ! isCNTRL_L1(result)) {
         /* We use isCNTRL_L1 above and not simply isCNTRL, because on EBCDIC
          * machines, things like \cT map into a C1 control. */
-           U8 clearer[3];
-           U8 i = 0;
-           if (! isWORDCHAR(result)) {
-               clearer[i++] = '\\';
-           }
-           clearer[i++] = result;
-           clearer[i++] = '\0';
-
-           Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
-                           "\"\\c%c\" is more clearly written simply as \"%s\"",
-                           source,
-                           clearer);
+        U8 clearer[3];
+        U8 i = 0;
+        if (! isWORDCHAR(result)) {
+            clearer[i++] = '\\';
+        }
+        clearer[i++] = result;
+        clearer[i++] = '\0';
+
+        Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
+                        "\"\\c%c\" is more clearly written simply as \"%s\"",
+                        source,
+                        clearer);
     }
 
     return result;