about summary refs log tree commit diff
path: root/README
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2015-06-22 16:37:59 +0100
committerPeter Stephenson <pws@zsh.org>2015-06-22 16:37:59 +0100
commit5c513aa33f136aebfdb1cb4f25ea18b7cc750f22 (patch)
tree55f0367e11f2cd97f7786ff4192015d321d7841d /README
parentdcb000e53a04c608cbfea4c6b7977d2f6b8fe823 (diff)
downloadzsh-5c513aa33f136aebfdb1cb4f25ea18b7cc750f22.tar.gz
zsh-5c513aa33f136aebfdb1cb4f25ea18b7cc750f22.tar.xz
zsh-5c513aa33f136aebfdb1cb4f25ea18b7cc750f22.zip
Documentation for new typeset parsing.
Don't need KSH_TYPESET even in emulation.

integer and float should be parsed the same way in case of
arguments that will be evaluated as expressions.
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 17 insertions, 0 deletions
diff --git a/README b/README
index 10f29a4ed..0b985fb7d 100644
--- a/README
+++ b/README
@@ -30,6 +30,23 @@ Zsh is a shell with lots of features.  For a list of some of these, see the
 file FEATURES, and for the latest changes see NEWS.  For more
 details, see the documentation.
 
+Incompatibilites between 5.0.8 and 5.0.9
+----------------------------------------
+
+As noted in NEWS, the builtins declare, export, float, integer, local,
+readonly and typeset now have corresponding reserved words that provide
+true assignment semantics instead of an approximation by means of normal
+command line arguments.  It is hoped that this additional consistency
+provides a more natural interface.  However, compatbility with older
+versions of zsh can be obtained by turning off the reserved word
+interface, exposing the builtin interface:
+
+  disable -r declare export float integer local readonly typeset
+
+This is also necessary in the unusual eventuality that the builtins are
+to be replaced by shell functions, since reserved words take precedence
+over functions.
+
 Incompatibilites between 5.0.7 and 5.0.8
 ----------------------------------------