summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--NEWS12
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 35b072bc0..5e1a995ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2004-07-12 Peter Stephenson <pws@csr.com>
* unposted: NEWS: read it through and tidied it up.
+ Also additions from Oliver.
* 20151: NEWS: notes on (F) and history -p.
diff --git a/NEWS b/NEWS
index 0a33e3c29..890c1359f 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,18 @@ CHANGES FROM PREVIOUS VERSIONS OF ZSH
Changes since zsh version 4.2.0
-------------------------------
+- The autoload and related builtins take options -k and -z to indicate
+ ksh or zsh autoloading style for given functions, making it possible
+ to mix and match.
+
+- Assignments to associative arrays can use the i and r index flags.
+ For example,
+ assoc[(i)alpha*]=bravo
+ sets the value for the element whose key matches the pattern `alpha*';
+ assoc[(r)activ*]=passive
+ sets the value for the element whose current value matches the pattern
+ `activ*'.
+
- The glob qualifier F indicates a non-empty directory. Hence *(F)
indicates all subdirectories with entries, *(/^F) means all
subdirectories with no entries.