diff options
author | nijtmans <nijtmans> | 2010-01-29 16:17:20 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-01-29 16:17:20 (GMT) |
commit | 20dedb76e13ace251494944dae1a8e60d2f6d70a (patch) | |
tree | 26f8bbc7ca7c8759763e62169bfefcb1310134a0 /generic/tclInt.decls | |
parent | 2a36240c713f132ba78917496b237d879d5e2d58 (diff) | |
download | tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.zip tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.tar.gz tcl-20dedb76e13ace251494944dae1a8e60d2f6d70a.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.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 478c719..0a62638 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -13,7 +13,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.142 2010/01/22 13:02:50 nijtmans Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.143 2010/01/29 16:17:20 nijtmans Exp $ library tcl @@ -230,7 +230,7 @@ declare 51 generic { #} declare 53 generic { int TclInvokeObjectCommand(ClientData clientData, Tcl_Interp *interp, - int argc, const char **argv) + int argc, CONST84 char **argv) } declare 54 generic { int TclInvokeStringCommand(ClientData clientData, Tcl_Interp *interp, @@ -549,7 +549,7 @@ declare 133 generic { # int TclpChdir(const char *dirName) #} declare 138 generic { - const char *TclGetEnv(const char *name, Tcl_DString *valuePtr) + CONST84_RETURN char *TclGetEnv(const char *name, Tcl_DString *valuePtr) } #declare 139 generic { # int TclpLoadFile(Tcl_Interp *interp, char *fileName, char *sym1, @@ -561,7 +561,7 @@ declare 138 generic { #} # This is used by TclX, but should otherwise be considered private declare 141 generic { - const char *TclpGetCwd(Tcl_Interp *interp, Tcl_DString *cwdPtr) + CONST84_RETURN char *TclpGetCwd(Tcl_Interp *interp, Tcl_DString *cwdPtr) } declare 142 generic { int TclSetByteCodeFromAny(Tcl_Interp *interp, Tcl_Obj *objPtr, |