1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-10 12:40:58 +02:00

3.1.9, now

This commit is contained in:
Peter Stephenson 2000-06-05 21:12:13 +00:00
parent 96e53995c9
commit ebc33dc0fb
4 changed files with 15 additions and 13 deletions

View file

@ -1,3 +1,7 @@
2000-06-05 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* Config/version.mk: 3.1.9, already.
2000-06-05 Oliver Kiddle <opk@zsh.org> 2000-06-05 Oliver Kiddle <opk@zsh.org>
* unposted: Src/params.c: AIX dependency fix * unposted: Src/params.c: AIX dependency fix

View file

@ -27,5 +27,5 @@
# This must also serve as a shell script, so do not add spaces around the # This must also serve as a shell script, so do not add spaces around the
# `=' signs. # `=' signs.
VERSION=3.1.8 VERSION=3.1.9
VERSION_DATE='June 5, 2000' VERSION_DATE='June 5, 2000'

View file

@ -43,21 +43,16 @@ whenlatex(report(ARG1)(ARG2)(ARG3))\
whenman(report(ARG1)(ARG2)(ARG3))\ whenman(report(ARG1)(ARG2)(ARG3))\
whenms(report(ARG1)(ARG2)(ARG3))\ whenms(report(ARG1)(ARG2)(ARG3))\
whensgml(report(ARG1)(ARG2)(ARG3))) whensgml(report(ARG1)(ARG2)(ARG3)))
myreport(Z-Shell Frequently-Asked Questions)(Peter Stephenson)(2000/05/24) myreport(Z-Shell Frequently-Asked Questions)(Peter Stephenson)(2000/06/05)
COMMENT(-- the following are for Usenet and must appear first)\ COMMENT(-- the following are for Usenet and must appear first)\
description(\ description(\
mydit(Archive-Name:) unix-faq/shell/zsh mydit(Archive-Name:) unix-faq/shell/zsh
mydit(Last-Modified:) 2000/05/24 mydit(Last-Modified:) 2000/06/05
mydit(Submitted-By:) email(pws@pwstephenson.fsnet.co.uk (Peter Stephenson)) mydit(Submitted-By:) email(pws@pwstephenson.fsnet.co.uk (Peter Stephenson))
mydit(Posting-Frequency:) Monthly mydit(Posting-Frequency:) Monthly
mydit(Copyright:) (C) P.W. Stephenson, 1995--2000 (see end of document) mydit(Copyright:) (C) P.W. Stephenson, 1995--2000 (see end of document)
) )
bf(Changes since issue posted April 2000:)
description(
mydit(2.5) Mention that tt(${var/old/new}) is a little different from bash.
)
This document contains a list of frequently-asked (or otherwise This document contains a list of frequently-asked (or otherwise
significant) questions concerning the Z-shell, a command interpreter significant) questions concerning the Z-shell, a command interpreter
for many UNIX systems which is freely available to anyone with FTP for many UNIX systems which is freely available to anyone with FTP
@ -303,7 +298,7 @@ sect(What's the latest version?)
incompatibilities at the end of link(5.1)(51). This is longer than usual incompatibilities at the end of link(5.1)(51). This is longer than usual
due to enhanced sh, ksh and POSIX compatibility. due to enhanced sh, ksh and POSIX compatibility.
The beta version 3.1.6 is also available. Development of zsh is usually The beta version 3.1.9 is also available. Development of zsh is usually
patch by patch, with each intermediate version publicly available. Note patch by patch, with each intermediate version publicly available. Note
that this `open' development system does mean bugs are sometimes that this `open' development system does mean bugs are sometimes
introduced into the most recent archived version. These are usually introduced into the most recent archived version. These are usually
@ -1132,7 +1127,10 @@ label(35)
) )
(disable parity detection, don't strip high bit, use 8-bit characters). (disable parity detection, don't strip high bit, use 8-bit characters).
Make sure this comes myem(before) any bindkey entries in your .zshrc which Make sure this comes myem(before) any bindkey entries in your .zshrc which
redefine keys normally defined in the emacs/vi keymap. redefine keys normally defined in the emacs/vi keymap. You may also
need to set the tt(eightBitOutput) resource in your tt(~/.Xdefaults)
file, although this is on by default and it's unlikely anybody will
have tinkered with it.
You don't need the mytt(bindkey) to be able to define your own sequences You don't need the mytt(bindkey) to be able to define your own sequences
with the meta key, though you still need the mytt(stty). with the meta key, though you still need the mytt(stty).

View file

@ -2,9 +2,9 @@
CHANGES FROM PREVIOUS VERSIONS OF ZSH CHANGES FROM PREVIOUS VERSIONS OF ZSH
------------------------------------- -------------------------------------
New features in zsh version 3.1.8 New features in zsh version 3.1.8 and 3.1.9
--------------------------------- -------------------------------------------
This is primarily a bug-fix version. There are only a few user-visible These are primarily bug-fix versions. There are only a few user-visible
changes. changes.
- Array slices ${array[a,b]} with b < a now correctly have zero length. - Array slices ${array[a,b]} with b < a now correctly have zero length.