summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-03-19 22:52:38 -0600
committerKarl Williamson <khw@cpan.org>2020-03-20 07:44:31 -0600
commit770e79e94914f38efa409664c53df95c2b5073f3 (patch)
treeeb70ce3efe328d05722a32b9068de70ba14eb026
parent293f45f699e7c79144f24b400133aca19aaa0e2e (diff)
downloadperl-770e79e94914f38efa409664c53df95c2b5073f3.tar.gz
regcomp.c: white-space only
indent code that the next commit forms a block around
-rw-r--r--regcomp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/regcomp.c b/regcomp.c
index 0c3b37fe66..00b13f365e 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -25037,12 +25037,12 @@ S_handle_names_wildcard(pTHX_ const char * wname, /* wildcard name to match */
continue;
}
- /* Calculate the code point from its 5 digits */
- cp = (XDIGIT_VALUE(cp_start[0]) << 16)
- + (XDIGIT_VALUE(cp_start[1]) << 12)
- + (XDIGIT_VALUE(cp_start[2]) << 8)
- + (XDIGIT_VALUE(cp_start[3]) << 4)
- + XDIGIT_VALUE(cp_start[4]);
+ /* Calculate the code point from its 5 digits */
+ cp = (XDIGIT_VALUE(cp_start[0]) << 16)
+ + (XDIGIT_VALUE(cp_start[1]) << 12)
+ + (XDIGIT_VALUE(cp_start[2]) << 8)
+ + (XDIGIT_VALUE(cp_start[3]) << 4)
+ + XDIGIT_VALUE(cp_start[4]);
/* We matched! Add this to the list */
*prop_definition = add_cp_to_invlist(*prop_definition, cp);