diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2001-11-28 13:15:29 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2001-11-28 13:15:29 (GMT) |
commit | 5e18a617ac41b75c9e346a6a3c9e6336ea02c467 (patch) | |
tree | 9b7042887948948f3706615c6edaeefc9460471d /doc/regsub.n | |
parent | e163a9c0b59dc20195dcb801c0c85f1287c4292b (diff) | |
download | tcl-5e18a617ac41b75c9e346a6a3c9e6336ea02c467.zip tcl-5e18a617ac41b75c9e346a6a3c9e6336ea02c467.tar.gz tcl-5e18a617ac41b75c9e346a6a3c9e6336ea02c467.tar.bz2 |
Manpage fix (RE syntax now in separate page.)
Resolves Bug486159 reported by Larry Virden.
Diffstat (limited to 'doc/regsub.n')
-rw-r--r-- | doc/regsub.n | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/regsub.n b/doc/regsub.n index 1d66f5d..9fe54ab 100644 --- a/doc/regsub.n +++ b/doc/regsub.n @@ -6,7 +6,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: regsub.n,v 1.6 2000/09/07 14:27:50 poenitz Exp $ +'\" RCS: @(#) $Id: regsub.n,v 1.7 2001/11/28 13:15:31 dkf Exp $ '\" .so man.macros .TH regsub n 8.3 Tcl "Tcl Built-In Commands" @@ -60,7 +60,7 @@ from the corresponding match. \fB\-expanded\fR Enables use of the expanded regular expression syntax where whitespace and comments are ignored. This is the same as specifying -the \fB(?x)\fR embedded option (see METASYNTAX, below). +the \fB(?x)\fR embedded option (see the \fBre_syntax\fR manual page). .TP 15 \fB\-line\fR Enables newline-sensitive matching. By default, newline is a @@ -70,17 +70,18 @@ matches an empty string after any newline in addition to its normal function, and `$' matches an empty string before any newline in addition to its normal function. This flag is equivalent to specifying both \fB\-linestop\fR and \fB\-lineanchor\fR, or the -\fB(?n)\fR embedded option (see METASYNTAX, below). +\fB(?n)\fR embedded option (see the \fBre_syntax\fR manual page). .TP 15 \fB\-linestop\fR Changes the behavior of `[^' bracket expressions and `.' so that they stop at newlines. This is the same as specifying the \fB(?p)\fR -embedded option (see METASYNTAX, below). +embedded option (see the \fBre_syntax\fR manual page). .TP 15 \fB\-lineanchor\fR Changes the behavior of `^' and `$' (the ``anchors'') so they match the beginning and end of a line respectively. This is the same as -specifying the \fB(?w)\fR embedded option (see METASYNTAX, below). +specifying the \fB(?w)\fR embedded option (see the \fBre_syntax\fR +manual page). .TP 10 \fB\-nocase\fR Upper-case characters in \fIstring\fR will be converted to lower-case |