]> git.donarmstrong.com Git - perltidy.git/commitdiff
brought changes up to date
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 21 Jan 2019 15:50:51 +0000 (07:50 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 21 Jan 2019 15:50:51 +0000 (07:50 -0800)
docs/ChangeLog.html

index 6a754cd410a73583e32800e0186bc9597d828582..052c34d5a08b199156d21493d7096f1f2ff92f90 100644 (file)
@@ -2,14 +2,48 @@
 
 <h2>2018 11 20.01</h2>
 
-<pre><code>- RT#12764, introduced new feature allowing placement of blanks around
-  sequences of selected keywords such as use, my, our, local. This can
-  be activated with the -kgb* series of parameters described in the manual.
+<pre><code>- RT #128216, very minor update to prevent inserting unwanted blank line at
+  indentation level change.  This should not change existing scripts.
+
+- RT #81852: Improved indentation when quoted word (qw) lists are 
+  nested within other containers using the --weld-nested (-wn) flag.
+  The example given previously (below) is now closer to what it would
+  be with a simple list instead of qw:
+
+  # perltidy -wn
+  use_all_ok( qw{
+      PPI
+      PPI::Tokenizer
+      PPI::Lexer
+      PPI::Dumper
+      PPI::Find
+      PPI::Normal
+      PPI::Util
+      PPI::Cache
+  } );
+
+- RT#12764, introduced new feature allowing placement of blanks around
+  sequences of selected keywords. This can be activated with the -kgb* 
+  series of parameters described in the manual.
 
 - Rewrote vertical algnment module.  It is much better at finding
-  patterns in complex code.
+  patterns in complex code. For example,
 
-- Add repository URLs to META files
+OLD:
+       /^-std$/ &amp;&amp; do { $std       = 1;     next; };
+       /^--$/   &amp;&amp; do { @link_args = @argv; last; };
+       /^-I(.*)/ &amp;&amp; do { $path = $1 || shift @argv; next; };
+
+NEW:
+       /^-std$/  &amp;&amp; do { $std       = 1;                 next; };
+       /^--$/    &amp;&amp; do { @link_args = @argv;             last; };
+       /^-I(.*)/ &amp;&amp; do { $path      = $1 || shift @argv; next; };
+
+- Add repository URLs to META files 
+
+- RT #118553, "leave only one newline at end of file". This option was not 
+  added because of undesirable side effects, but a new filter script
+  was added which can do this, "examples/delete_ending_blank_lines.pl".
 </code></pre>
 
 <h2>2018 11 20</h2>