diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-01 01:28:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-01 01:28:04 (GMT) |
commit | 319cf45c1651867ee0e05ac4d4ba59b8f9ccdc4f (patch) | |
tree | 893a2de9963cf35871199b54016255aaac1619f6 /generic/tclInt.decls | |
parent | c748e239e3cb5d7c6ef703168f009cc695fc58d6 (diff) | |
download | tcl-319cf45c1651867ee0e05ac4d4ba59b8f9ccdc4f.zip tcl-319cf45c1651867ee0e05ac4d4ba59b8f9ccdc4f.tar.gz tcl-319cf45c1651867ee0e05ac4d4ba59b8f9ccdc4f.tar.bz2 |
When copying and pasting code, check that argument types are sensible! <:^)
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index d7930ff..58a1b68 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,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.65 2003/11/01 01:23:30 dkf Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.66 2003/11/01 01:28:04 dkf Exp $ library tcl @@ -728,10 +728,10 @@ declare 179 generic { # Allocate lists without copying arrays declare 180 generic { - Tcl_Obj *TclNewListObjDirect(int objc, Tcl_Obj *CONST objv[]) + Tcl_Obj *TclNewListObjDirect(int objc, Tcl_Obj **objv) } declare 181 generic { - Tcl_Obj *TclDbNewListObjDirect(int objc, Tcl_Obj *CONST objv[], + Tcl_Obj *TclDbNewListObjDirect(int objc, Tcl_Obj **objv, CONST char *file, int line) } ############################################################################## |