about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Doc/Zsh/cond.yo4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5a4eb4b20..a86d11bea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2010-01-19  Peter Stephenson  <pws@csr.com>
 
+	* unposted: Doc/Zsh/cond.yo: avoid Yodl error.
+
 	* Frank: 27606: Completion/Unix/Command/_tmux: tmux -d.
 
 2010-01-18  Peter Stephenson  <pws@csr.com>
@@ -12604,5 +12606,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.4865 $
+* $Revision: 1.4866 $
 *****************************************************
diff --git a/Doc/Zsh/cond.yo b/Doc/Zsh/cond.yo
index 4b7304407..0613dca05 100644
--- a/Doc/Zsh/cond.yo
+++ b/Doc/Zsh/cond.yo
@@ -130,8 +130,8 @@ subexpressions and the arrays tt(mbegin) and tt(mend) to the indices of
 the start and end positions, respectively, of the substrings within
 var(string).  The arrays are not set if there were no parenthesised
 subexpresssions.  For example, if the string `tt(a short string)' is matched
-against the regular expression `tt(s(...)t)', then (assuming the option
-tt(KSH_ARRAYS) is not set) tt(MATCH), tt(MBEGIN)
+against the regular expression `tt(s+LPAR()...RPAR()t)', then (assuming the
+option tt(KSH_ARRAYS) is not set) tt(MATCH), tt(MBEGIN)
 and tt(MEND) are `tt(short)', 3 and 7, respectively, while tt(match),
 tt(mbegin) and tt(mend) are single entry arrays containing
 the strings `tt(hor)', `tt(4)' and `tt(6), respectively.