Skip to content

Commit c1ba994

Browse files
committed
ExtUtils::ParseXS: reindent block
Indent a block of code which was wrapped in new braces by the previous commit. White space only.
1 parent 90510fd commit c1ba994

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,28 +1171,28 @@ EOF
11711171

11721172

11731173
{
1174-
# the code to emit to determine whether the correct number of argument
1175-
# have been passed
1176-
my $condition_code = set_cond($seen_ellipsis, $min_arg_count, $args_count);
1174+
# the code to emit to determine whether the correct number of argument
1175+
# have been passed
1176+
my $condition_code = set_cond($seen_ellipsis, $min_arg_count, $args_count);
11771177

1178-
print Q(<<"EOF") if $self->{except}; # "-except" cmd line switch
1178+
print Q(<<"EOF") if $self->{except}; # "-except" cmd line switch
11791179
# char errbuf[1024];
11801180
# *errbuf = '\\0';
11811181
EOF
11821182

1183-
if ($condition_code) {
1184-
print Q(<<"EOF");
1183+
if ($condition_code) {
1184+
print Q(<<"EOF");
11851185
# if ($condition_code)
11861186
# croak_xs_usage(cv, "$report_args");
11871187
EOF
1188-
}
1189-
else {
1190-
# cv and items likely to be unused
1191-
print Q(<<"EOF");
1188+
}
1189+
else {
1190+
# cv and items likely to be unused
1191+
print Q(<<"EOF");
11921192
# PERL_UNUSED_VAR(cv); /* -W */
11931193
# PERL_UNUSED_VAR(items); /* -W */
11941194
EOF
1195-
}
1195+
}
11961196
}
11971197

11981198
# gcc -Wall: if an XSUB has PPCODE, it is possible that none of ST,

0 commit comments

Comments
 (0)