summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-05-12 21:58:56 -0600
committerKarl Williamson <khw@cpan.org>2018-05-19 09:01:21 -0600
commit22806e5aea2cfdeba0d38f261177238346b31e8a (patch)
tree0cd63e0e233c51cfdfc309edd784ccb61184ad0f
parent94a386413c2586091712f944150f4dcc75ac0ac9 (diff)
downloadperl-22806e5aea2cfdeba0d38f261177238346b31e8a.tar.gz
regcomp.c: White space only
Indent code that now has a newly formed block around it.
-rw-r--r--regcomp.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/regcomp.c b/regcomp.c
index 57090e3893..f694ff7f8b 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -12487,10 +12487,11 @@ S_grok_bslash_N(pTHX_ RExC_state_t *pRExC_state,
do_concat:
if (node_p) {
- /* Convert to notation the rest of the code understands */
- sv_catpv(substitute_parse, "\\x{");
- sv_catpvn(substitute_parse, start_digit, RExC_parse - start_digit);
- sv_catpv(substitute_parse, "}");
+ /* Convert to notation the rest of the code understands */
+ sv_catpv(substitute_parse, "\\x{");
+ sv_catpvn(substitute_parse, start_digit,
+ RExC_parse - start_digit);
+ sv_catpv(substitute_parse, "}");
}
/* Move to after the dot (or ending brace the final time through.)