summaryrefslogtreecommitdiff
path: root/tcl/doc/StrMatch.3
diff options
context:
space:
mode:
Diffstat (limited to 'tcl/doc/StrMatch.3')
-rw-r--r--tcl/doc/StrMatch.37
1 files changed, 2 insertions, 5 deletions
diff --git a/tcl/doc/StrMatch.3 b/tcl/doc/StrMatch.3
index f291d96823c..947a8f92d3d 100644
--- a/tcl/doc/StrMatch.3
+++ b/tcl/doc/StrMatch.3
@@ -18,21 +18,18 @@ Tcl_StringMatch, Tcl_StringCaseMatch \- test whether a string matches a pattern
.sp
int
\fBTcl_StringMatch\fR(\fIstring\fR, \fIpattern\fR)
-.VS 8.1
.sp
-\fBTcl_StringCaseMatch\fR(\fIstring, pattern, nocase\fR)
-.VE 8.1
+int
+\fBTcl_StringCaseMatch\fR(\fIstring\fR, \fIpattern\fR, \fInocase\fR)
.SH ARGUMENTS
.AP char *string in
String to test.
.AP char *pattern in
Pattern to match against string. May contain special
characters from the set *?\e[].
-.VS 8.1
.AP int nocase in
Specifies whether the match should be done case-sensitive (0) or
case-insensitive (1).
-.VE 8.1
.BE
.SH DESCRIPTION