about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2014-07-20 11:42:09 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2014-07-20 11:42:09 -0700
commit2693d852f61ee5e1465d31d98a166cde4956ccd1 (patch)
tree650e0efbbbf70c9937d6333a5fe2460855d3ec4c /Doc
parentb63ff19dbf8f220f3ae8ab2ab41058f3149bde1f (diff)
downloadzsh-2693d852f61ee5e1465d31d98a166cde4956ccd1.tar.gz
zsh-2693d852f61ee5e1465d31d98a166cde4956ccd1.tar.xz
zsh-2693d852f61ee5e1465d31d98a166cde4956ccd1.zip
32891: CASE_MATCH for =~ when using pcre; fix pcre_match with empty string
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Zsh/mod_pcre.yo10
1 files changed, 9 insertions, 1 deletions
diff --git a/Doc/Zsh/mod_pcre.yo b/Doc/Zsh/mod_pcre.yo
index 6ab5a1937..faada28de 100644
--- a/Doc/Zsh/mod_pcre.yo
+++ b/Doc/Zsh/mod_pcre.yo
@@ -80,6 +80,14 @@ Matches a string against a perl-compatible regular expression.
 
 For example,
 
-[[ "$text" -pcre-match ^d+$ ]] && print text variable contains only "d's".
+example([[ "$text" -pcre-match ^d+$ ]] &&
+print text variable contains only "d's".)
+
+pindex(REMATCH_PCRE)
+pindex(NO_CASE_MATCH)
+If the tt(REMATCH_PCRE) option is set, the tt(=~) operator is equivalent to
+tt(-pcre-match), and the tt(NO_CASE_MATCH) option may be used.  Note that
+tt(NO_CASE_MATCH) never applies to the tt(pcre_match) builtin, instead use
+the tt(-i) switch of tt(pcre_compile).
 )
 enditem()