summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-05-31 11:12:59 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-05-31 11:12:59 +0000
commitf69338baaa99a538ffc4a2ed55eb1466da42c5d4 (patch)
tree886af4d678c76ea7f59807969a799c736bfa47de
parent1b2d095217d1560a648032aa192057b935ce9460 (diff)
downloadzsh-f69338baaa99a538ffc4a2ed55eb1466da42c5d4.tar.gz
zsh-f69338baaa99a538ffc4a2ed55eb1466da42c5d4.zip
a few more doc changes suggested by Bart
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL1
-rw-r--r--README16
3 files changed, 20 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 199fd1fa0..0a85319fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-31 Peter Stephenson <pws@csr.com>
+
+ * as per 14577 from Bart: README, INSTALL: we don't support
+ --enable-omit-modules any more; a few more changes since 3.0.
+
2001-05-31 Sven Wischnowsky <wischnow@zsh.org>
* 14605: Src/params.c, Src/Modules/parameter.c,
diff --git a/INSTALL b/INSTALL
index 6e48356bf..7eafd3094 100644
--- a/INSTALL
+++ b/INSTALL
@@ -408,7 +408,6 @@ fndir=directory # the directory where shell functions will go
site-fndir=directory # the directory where site-specific functions can go
# [DATADIR/zsh/site-functions]
function-subdirs # if functions will be installed into subdirectories [no]
-omit-modules=mod1,.. # don't compile or install the modules named mod1,...
dynamic # allow dynamically loaded binary modules [yes]
lfs # allow configure check for large files [yes]
locale # allow use of locale library [yes]
diff --git a/README b/README
index b6b023789..b4f4ce42f 100644
--- a/README
+++ b/README
@@ -24,7 +24,8 @@ details, see the documentation.
Possible incompatibilities
---------------------------
-Some particular differences you may notice between version 3.0 and 4.0:
+Some particular differences you may notice between version 3.0 and 4.0
+(mostly based on 3.0.8; there are other differences from earlier versions):
o The options ALWAYS_LAST_PROMPT (return to the line you were
editing after displaying completion lists) and LIST_AMBIGUOUS
@@ -42,6 +43,19 @@ Some particular differences you may notice between version 3.0 and 4.0:
hitting ESCAPE to exit insert mode. Purists who object to this can
unbind the appropriate key sequences (see zshzle(1)). Most beginning
users of zsh apparently find the current behaviour preferable.
+ o History file format is incompatible with versions older than 3.0.6,
+ but this should only affect people who try to share history files
+ between the two versions -- 4.0 can read the old format, 3.0.6 and
+ later can read the new format. Just beware of INC_APPEND_HISTORY,
+ which could conceivably mix the two.
+ o Default compctl completions have been removed for some builtin
+ commands. Either use the new compinit-derived system, use the
+ improved compctls from Misc/compctl-examples, or restore these
+ equivalents yourself:
+ compctl -b bindkey
+ compctl -v export typeset vared
+ compctl -o setopt unsetopt
+ compctl -c which
Documentation
-------------