Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Fix zshoptions claiming PCRE is enabled by default
- X-seq: zsh-workers 40568
- From: Øystein Walle <oystwa@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] Fix zshoptions claiming PCRE is enabled by default
- Date: Thu, 16 Feb 2017 17:18:13 +0100
- Cc: Øystein Walle <oystwa@xxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=uMhZyr60pzzZ5ZG3AY5lYACBLgCyIBn4BAJOtzo0lrs=; b=oNNleQtfUaxHpq7xMFXrMdWQZvQ7ERZXNqY9B+W/BB6lxrWCtPr+xp7ods8XGkrR+T 5BHfbp8+A7tlL0ZH/bdrQkeIYvWaVXLfOGFE99uOD7IU5IcM89sRXQRMhyT4mz+NW5dr EV+rmarTPjK8Q0fH+Y9W3ea1DWyq5rpowppwksX3+FtvGfYtdERWZl82xiKW7LAsN5ds HQgFaoOqTUhl7sOACwOw2NgA0TnZNGip1Pqoi9rP9jjEKqxR71a4qcU3n2OxcsnGedw7 AI92xH/kImA+qabtGCltLtP16NL47Z7u54D1rkHoFvKeCc+2CkUt9diNHGu0WuIWGWqr bIEw==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
The zshoptions manpage says that regexp matching uses PCRE by default in
zsh emulation mode. This is incorrect.
---
Doc/Zsh/options.yo | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo
index aa62748..8414894 100644
--- a/Doc/Zsh/options.yo
+++ b/Doc/Zsh/options.yo
@@ -722,7 +722,7 @@ pindex(REMATCHPCRE)
pindex(NOREMATCHPCRE)
cindex(regexp, PCRE)
cindex(PCRE, regexp)
-item(tt(REMATCH_PCRE) <Z>)(
+item(tt(REMATCH_PCRE))(
If set, regular expression matching with the tt(=~) operator will use
Perl-Compatible Regular Expressions from the PCRE library, if available.
If not set, regular expressions will use the extended regexp syntax
--
2.2.0
Messages sorted by:
Reverse Date,
Date,
Thread,
Author