summaryrefslogtreecommitdiff
path: root/Doc/Zsh/cond.yo
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-01-19 10:20:15 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-01-19 10:20:15 +0000
commit7ec0c64b4d3a6131acf5c08c51b30b89309e0ac6 (patch)
treeb638a829aabb9753b2596758c2c96d698f1de8ea /Doc/Zsh/cond.yo
parent6190f5f5e20c32136e52c33f96de32815aad18a8 (diff)
downloadzsh-7ec0c64b4d3a6131acf5c08c51b30b89309e0ac6.tar.gz
zsh-7ec0c64b4d3a6131acf5c08c51b30b89309e0ac6.zip
avoid Yodl error in cond.yo
Diffstat (limited to 'Doc/Zsh/cond.yo')
-rw-r--r--Doc/Zsh/cond.yo4
1 files changed, 2 insertions, 2 deletions
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.