diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-09-01 06:13:15 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-09-01 06:13:15 +0000 |
commit | 8219b3f2a21fa012cfff39f4ba96a114070947fb (patch) | |
tree | f3e1130850bd86290626b89a9961d56874fdbac4 /usr.bin/sed | |
parent | 58be9a8b202cbc9ec4a0b9455581b0b43d9cd7f2 (diff) |
note that the opening delimiter of a context address should be preceded
by a backslash, if the delimiter is not a slash;
adapted from freebsd -r1.47 from yar;
Diffstat (limited to 'usr.bin/sed')
-rw-r--r-- | usr.bin/sed/sed.1 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index b584c5731da..0083356051b 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sed.1,v 1.29 2007/10/16 20:19:27 sobrado Exp $ +.\" $OpenBSD: sed.1,v 1.30 2008/09/01 06:13:14 jmc Exp $ .\" .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. @@ -32,7 +32,7 @@ .\" .\" from: @(#)sed.1 8.2 (Berkeley) 12/30/93 .\" -.Dd $Mdocdate: October 16 2007 $ +.Dd $Mdocdate: September 1 2008 $ .Dt SED 1 .Os .Sh NAME @@ -175,7 +175,9 @@ has the following two additions to BREs: In a context address, any character other than a backslash .Pq Ql \e or newline character may be used to delimit the regular expression. -Also, putting a backslash character before the delimiting character +The opening delimiter should be preceded by a backslash +unless it is a slash. +Putting a backslash character before the delimiting character causes the character to be treated literally. For example, in the context address \exabc\exdefx, the RE delimiter is an |