From fffbbca95ca49452b0890fc5c5669365981585e6 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Tue, 26 Nov 2024 14:58:44 -0800 Subject: [PATCH] add missing call arg --- lib/Perl/Tidy/Formatter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5