about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2000-04-14 13:07:58 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2000-04-14 13:07:58 +0000
commitb6ba688405f0871a2a3aa28e6cb9173ca963202a (patch)
tree3c356436c3b8fdd7c37d2f66c81e7bc2b5e9d30f
parent4ea0d964757df77b9771d56cad5d6f4e9dcbacd1 (diff)
downloadzsh-b6ba688405f0871a2a3aa28e6cb9173ca963202a.tar.gz
zsh-b6ba688405f0871a2a3aa28e6cb9173ca963202a.tar.xz
zsh-b6ba688405f0871a2a3aa28e6cb9173ca963202a.zip
Doc fix for 10756
-rw-r--r--ChangeLog8
-rw-r--r--Doc/Zsh/expn.yo5
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a7c142ce9..f19f001df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo
index bac3c2094..8d32500b4 100644
--- a/Doc/Zsh/expn.yo
+++ b/Doc/Zsh/expn.yo
@@ -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()