]> git.donarmstrong.com Git - perltidy.git/commitdiff
add note for git #174
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 6 Dec 2024 14:30:10 +0000 (06:30 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 6 Dec 2024 14:30:10 +0000 (06:30 -0800)
CHANGES.md

index 5ff04f49647b1218aad80ccacf4405a5ee4ce625..58cf183a028483f34a021cc0afba60c44df1930e 100644 (file)
        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.