a few more doc changes suggested by Bart

This commit is contained in:
Peter Stephenson 2001-05-31 11:12:59 +00:00
parent 1b2d095217
commit f69338baaa
3 changed files with 20 additions and 2 deletions

View file

@ -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,

View file

@ -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]

16
README
View file

@ -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
-------------