about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2012-04-25 09:18:48 +0000
committerMikael Magnusson <mikachu@gmail.com>2012-04-25 09:18:48 +0000
commit3e05817b7758defc008ce240235cf3174a88d4f3 (patch)
tree438ab11e5329f647d8527031fe56e0441f8ef4c8
parent92c8a8fa2adfc32259f562fac5ec6cba7c2a70b7 (diff)
downloadzsh-3e05817b7758defc008ce240235cf3174a88d4f3.tar.gz
zsh-3e05817b7758defc008ce240235cf3174a88d4f3.tar.xz
zsh-3e05817b7758defc008ce240235cf3174a88d4f3.zip
30444: add NEWS entry for 30431
-rw-r--r--ChangeLog4
-rw-r--r--NEWS6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index af1928692..2e6fd04df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
 
 	* 30430: Doc/intro.ms: Fix some errors and outdatedness.
 
+	* 30444: NEWS: Add entry for new syntax added in 30431 below.
+
 2012-04-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* unposted: Src/subst.c: add test for valid identifier to 30431.
@@ -16244,5 +16246,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5641 $
+* $Revision: 1.5642 $
 *****************************************************
diff --git a/NEWS b/NEWS
index 2c05c6349..804f3abf8 100644
--- a/NEWS
+++ b/NEWS
@@ -87,6 +87,12 @@ Expansion (parameters, globbing, etc.) and redirection
   as a string, never a pattern, e.g. ${array[(ie)*]} looks for the
   index of the array element containing the literal string "*".
 
+- The operators :| and :* in parameter substitution allow for array
+  subtraction and intersection in the form ${name:|array}. With the :|
+  operator, all entries in $name that are also in $array will be removed
+  from the substitution. Conversely for the :* operation only the
+  entries that are in both arrays will be substituted.
+
 - Numeric expansions can have a positive or negative step
   e.g. "{3..9..2}".  Negative start and end of ranges are also now
   supported.