summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-10-31 13:47:43 +0100
committerYves Orton <demerphq@gmail.com>2022-11-01 11:57:31 +0100
commite6421d31ff3b18d931e0da3152437c6f8d3f24a9 (patch)
tree3f6caa6fba4c52912511f846debee6a1aaaafa82 /perl.c
parentfefcc043b6a92984b721aeb113c9251b5d87f34d (diff)
downloadperl-e6421d31ff3b18d931e0da3152437c6f8d3f24a9.tar.gz
mg.c/perl.c/scope.c - fixup mangled indentation and whitespace
Various code related to set_and_free_cop_warnings was terribly mangled as far as whitespace goes. This patch cleans it up so it is readable and correctly indented. Whitespace only changes.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.c b/perl.c
index ad7311baa5..e1c3d1f157 100644
--- a/perl.c
+++ b/perl.c
@@ -3823,12 +3823,12 @@ Perl_moreswitches(pTHX_ const char *s)
return s;
case 'W':
PL_dowarn = G_WARN_ALL_ON|G_WARN_ON;
- free_and_set_cop_warnings(&PL_compiling, pWARN_ALL);
+ free_and_set_cop_warnings(&PL_compiling, pWARN_ALL);
s++;
return s;
case 'X':
PL_dowarn = G_WARN_ALL_OFF;
- free_and_set_cop_warnings(&PL_compiling, pWARN_NONE);
+ free_and_set_cop_warnings(&PL_compiling, pWARN_NONE);
s++;
return s;
case '*':