From: Steve Hancock Date: Tue, 26 Nov 2024 22:58:44 +0000 (-0800) Subject: add missing call arg X-Git-Tag: 20240903.07~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fffbbca95ca49452b0890fc5c5669365981585e6;p=perltidy.git add missing call arg --- diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index ff70cc56..114a8fcd 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -14575,7 +14575,7 @@ sub add_trailing_comma { } # If so, and not delayed, add a comma - if ( $match && !$self->delay_trailing_comma_op($stable_flag) ) { + if ( $match && !$self->delay_trailing_comma_op( 1, $stable_flag ) ) { # any blank after the comma will be added before the closing paren, # below