diff options
author | nijtmans <nijtmans@noemail.net> | 2010-01-29 16:17:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-01-29 16:17:20 (GMT) |
commit | 69f99f9864e67f7619f3cc1f2ae5278e109fa8e7 (patch) | |
tree | 26f8bbc7ca7c8759763e62169bfefcb1310134a0 /doc | |
parent | 42f5932ef552927d02161893ffa546dcd991fdb4 (diff) | |
download | tcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.zip tcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.tar.gz tcl-69f99f9864e67f7619f3cc1f2ae5278e109fa8e7.tar.bz2 |
- genStubs.tcl: No longer generate a space after "*" and
immediately after a function name, so the
format of function definitions in tcl*Decls.h
matches all other tcl*.h header files.
- Change Tcl_ArgvFuncProc, Tcl_ArgvGenFuncProc
and GetFrameInfoValueProc to be function
definitions, not pointers, for consistency
with all other Tcl function definitions.
FossilOrigin-Name: 92924901357b4846fa668b6f5122abf37979693a
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ParseArgs.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ParseArgs.3 b/doc/ParseArgs.3 index 524e2f2..1711b8c 100644 --- a/doc/ParseArgs.3 +++ b/doc/ParseArgs.3 @@ -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: ParseArgs.3,v 1.1 2008/10/02 23:32:13 dkf Exp $ +'\" RCS: @(#) $Id: ParseArgs.3,v 1.2 2010/01/29 16:17:21 nijtmans Exp $ '\" .so man.macros .TH Tcl_ParseArgsObjv 3 8.6 Tcl "Tcl Library Procedures" @@ -128,7 +128,7 @@ have the following signature: .RS .PP .CS -typedef int (*\fBTcl_ArgvFuncProc\fR)( +typedef int (\fBTcl_ArgvFuncProc\fR)( ClientData \fIclientData\fR, Tcl_Obj *\fIobjPtr\fR, void *\fIdstPtr\fR); @@ -150,7 +150,7 @@ function will have the following signature: .RS .PP .CS -typedef int (*\fBTcl_ArgvGenFuncProc\fR)( +typedef int (\fBTcl_ArgvGenFuncProc\fR)( ClientData \fIclientData\fR, Tcl_Interp *\fIinterp\fR, int \fIobjc\fR, |