diff options
author | 2013-06-05 22:05:29 +0000 | |
---|---|---|
committer | 2013-06-05 22:05:29 +0000 | |
commit | f05d78a41c38028fe096015542d5a0500817f399 (patch) | |
tree | 2e6db36e615d45f0a31978d616f45ef27f429819 /lib/libc/regex | |
parent | plug another memleak. bz#1967, from Zhenbo Xu, detected by Melton, ok djm (diff) | |
download | wireguard-openbsd-f05d78a41c38028fe096015542d5a0500817f399.tar.xz wireguard-openbsd-f05d78a41c38028fe096015542d5a0500817f399.zip |
[[:>:]] anchors the character preceding it to end of word, not the
character following it;
From: Peter Fraser
Diffstat (limited to 'lib/libc/regex')
-rw-r--r-- | lib/libc/regex/re_format.7 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/regex/re_format.7 b/lib/libc/regex/re_format.7 index 72887175209..d509020576d 100644 --- a/lib/libc/regex/re_format.7 +++ b/lib/libc/regex/re_format.7 @@ -1,4 +1,4 @@ -.\" $OpenBSD: re_format.7,v 1.15 2010/07/15 20:51:38 schwarze Exp $ +.\" $OpenBSD: re_format.7,v 1.16 2013/06/05 22:05:29 jmc Exp $ .\" .\" Copyright (c) 1997, Phillip F Knaack. All rights reserved. .\" @@ -35,7 +35,7 @@ .\" .\" @(#)re_format.7 8.3 (Berkeley) 3/20/94 .\" -.Dd $Mdocdate: July 15 2010 $ +.Dd $Mdocdate: June 5 2013 $ .Dt RE_FORMAT 7 .Os .Sh NAME @@ -446,7 +446,7 @@ Anchors the single character regular expression or subexpression immediately following it to the beginning of a word. .It [[:>:]] Anchors the single character regular expression or subexpression -immediately following it to the end of a word. +immediately preceding it to the end of a word. .It Pq Ar re Defines a subexpression .Ar re . |