summaryrefslogtreecommitdiff
path: root/dquote_static.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-02-05 15:42:35 -0700
committerKarl Williamson <public@khwilliamson.com>2014-02-05 15:47:05 -0700
commit4d8be63140ab9b3878f47f1d950070c7cff7cf44 (patch)
tree9dd2f5667bb82eb03d4d4a28c0bbb657eb2e0f1f /dquote_static.c
parent421e43ba3017755892f18a5690b66a6ed8717fa9 (diff)
downloadperl-4d8be63140ab9b3878f47f1d950070c7cff7cf44.tar.gz
dquote_static.c: White-space only
Outdent code whose surrounding block was removed by the previous commit
Diffstat (limited to 'dquote_static.c')
-rw-r--r--dquote_static.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/dquote_static.c b/dquote_static.c
index 76fb86dfaf..4eaa4b1089 100644
--- a/dquote_static.c
+++ b/dquote_static.c
@@ -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;