From: Steve Hancock Date: Fri, 6 Dec 2024 14:30:10 +0000 (-0800) Subject: add note for git #174 X-Git-Tag: 20240903.08~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e1b60772b549bec2eb02d556ab696af2729f12ce;p=perltidy.git add note for git #174 --- diff --git a/CHANGES.md b/CHANGES.md index 5ff04f49..58cf183a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -34,6 +34,14 @@ NEW: push( @script, <<'EOT' ); + Also, any spaces between the '<<' and here target are removed (git #174): + + OLD: + push( @script, << 'EOT'); + + NEW: + push( @script, <<'EOT' ); + - Added parameter --break-at-trailing-comma-types=s, or -btct=s, where s is a string which selects trailing commas. For example, -btct='f(b' places a line break after all bare trailing commas in function calls.