summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-10-08 17:53:18 +0000
committerJim Meyering <jim@meyering.net>2003-10-08 17:53:18 +0000
commit49e0862ebbb322693712b393bc7ae13e1d4de918 (patch)
tree15aaa515c8af13c8514e19165c0d54d706cc1241 /doc
parent5b00b41da45bdb4dda5e59ef7e24944a6ce0f235 (diff)
downloadcoreutils-49e0862ebbb322693712b393bc7ae13e1d4de918.tar.xz
(csplit invocation):
The regexp offset need not have a sign; POSIX requires support for signless offets.
Diffstat (limited to 'doc')
-rw-r--r--doc/coreutils.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi
index 812e4a16a..4e403ea99 100644
--- a/doc/coreutils.texi
+++ b/doc/coreutils.texi
@@ -2414,8 +2414,8 @@ file once for each repeat.
@item /@var{regexp}/[@var{offset}]
Create an output file containing the current line up to (but not
including) the next line of the input file that contains a match for
-@var{regexp}. The optional @var{offset} is a @samp{+} or @samp{-}
-followed by a positive integer. If it is given, the input up to the
+@var{regexp}. The optional @var{offset} is an integer.
+If it is given, the input up to (but not including) the
matching line plus or minus @var{offset} is put into the output file,
and the line after that begins the next section of input.