1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-01 06:20:55 +01:00

Doc fix for 10756

This commit is contained in:
Peter Stephenson 2000-04-14 13:07:58 +00:00
parent 4ea0d96475
commit b6ba688405
2 changed files with 8 additions and 5 deletions

View file

@ -4,10 +4,10 @@
2000-04-14 Peter Stephenson <pws@cambridgesiliconradio.com>
* 10756: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c, Src/zsh.h:
fix (#s) and (#e) to work in allerlei parameter substitutions;
fix potential problem with (#e) in exclusions; note things in
manual which should work.
* 10756, 10761: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c,
Src/zsh.h: fix (#s) and (#e) to work in allerlei parameter
substitutions; fix potential problem with (#e) in exclusions; note
things in manual which should work.
2000-04-13 Clint Adams <schizo@debian.org>

View file

@ -1318,7 +1318,10 @@ operations `tt(/)' and `tt(//)' with the `tt((#s))' and `tt((#e))' flags
provides a single simple and memorable method.
Note that assertions of the form `tt((^(#s)))' also work, i.e. match
anywhere except at the start of the string.
anywhere except at the start of the string, although this actually means
`anything except a zero-length portion at the start of the string'; you
need to use `tt((""~(#s)))' to match a zero-length portion of the string
not at the start.
)
enditem()