diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-17 03:03:10 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-17 03:03:10 (GMT) |
commit | 2955a401d559c6249d4f2ad18a4c7b000df1a3de (patch) | |
tree | d3199c60f6666de3fc69c7f34d074408746ec7f2 /doc | |
parent | a47d47cbb35ee1acc2ecb44bb6b37631ce05d137 (diff) | |
download | tcl-2955a401d559c6249d4f2ad18a4c7b000df1a3de.zip tcl-2955a401d559c6249d4f2ad18a4c7b000df1a3de.tar.gz tcl-2955a401d559c6249d4f2ad18a4c7b000df1a3de.tar.bz2 |
* Updated APIs in generic/tclUtf.c and generic/tclRegexp.c according
to the guidelines of TIP 27. Updated callers.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/RegExp.3 | 10 | ||||
-rw-r--r-- | doc/Utf.3 | 22 |
2 files changed, 20 insertions, 12 deletions
diff --git a/doc/RegExp.3 b/doc/RegExp.3 index 5f2634c..6a4fbb4 100644 --- a/doc/RegExp.3 +++ b/doc/RegExp.3 @@ -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: RegExp.3,v 1.9 2001/10/14 16:21:45 dgp Exp $ +'\" RCS: @(#) $Id: RegExp.3,v 1.10 2002/01/17 03:03:10 dgp Exp $ '\" .so man.macros .TH Tcl_RegExpMatch 3 8.1 Tcl "Tcl Library Procedures" @@ -57,7 +57,7 @@ compiled regular expression is cached in the object. .VE 8.1 .AP char *string in String to check for a match with a regular expression. -.AP char *pattern in +.AP "CONST char" *pattern in String in the form of a regular expression pattern. .AP Tcl_RegExp regexp in Compiled regular expression. Must have been returned previously @@ -71,12 +71,14 @@ will be allowed. Specifies which range is desired: 0 means the range of the entire match, 1 or greater means the range that matched a parenthesized sub-expression. -.AP char **startPtr out +.VS 8.4 +.AP "CONST char" **startPtr out The address of the first character in the range is stored here, or NULL if there is no such range. -.AP char **endPtr out +.AP "CONST char" **endPtr out The address of the character just after the last one in the range is stored here, or NULL if there is no such range. +.VE 8.4 .VS 8.1 .AP int cflags in OR-ed combination of compilation flags. See below for more information. @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Utf.3,v 1.10 2001/12/10 15:50:47 dgp Exp $ +'\" RCS: @(#) $Id: Utf.3,v 1.11 2002/01/17 03:03:10 dgp Exp $ '\" .so man.macros .TH Utf 3 "8.1" Tcl "Tcl Library Procedures" @@ -22,12 +22,14 @@ int .sp int \fBTcl_UtfToUniChar\fR(\fIsrc, chPtr\fR) +.VS 8.4 .sp -char * +CONST char * \fBTcl_UniCharToUtfDString\fR(\fIuniStr, numChars, dstPtr\fR) .sp -Tcl_UniChar * +CONST Tcl_UniChar * \fBTcl_UtfToUniCharDString\fR(\fIsrc, len, dstPtr\fR) +.VE 8.4 .sp int \fBTcl_UniCharLen\fR(\fIuniStr\fR) @@ -54,24 +56,28 @@ int .sp int \fBTcl_NumUtfChars\fR(\fIsrc, len\fR) +.VS 8.4 .sp -char * +CONST char * \fBTcl_UtfFindFirst\fR(\fIsrc, ch\fR) .sp -char * +CONST char * \fBTcl_UtfFindLast\fR(\fIsrc, ch\fR) .sp -char * +CONST char * \fBTcl_UtfNext\fR(\fIsrc\fR) .sp -char * +CONST char * \fBTcl_UtfPrev\fR(\fIsrc, start\fR) +.VE 8.4 .sp Tcl_UniChar \fBTcl_UniCharAtIndex\fR(\fIsrc, index\fR) +.VS 8.4 .sp -char * +CONST char * \fBTcl_UtfAtIndex\fR(\fIsrc, index\fR) +.VE 8.4 .sp int \fBTcl_UtfBackslash\fR(\fIsrc, readPtr, dst\fR) |