diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-01-17 00:28:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-01-17 00:28:07 (GMT) |
commit | 09472fab726b19e26a46d7b05426356a1ceff8cd (patch) | |
tree | 400fb6a62c9934846c003b2748698b373c84358b /generic/tclInt.h | |
parent | adba9fe738d1390234b5d5bbb461df81d094ea7e (diff) | |
download | tcl-09472fab726b19e26a46d7b05426356a1ceff8cd.zip tcl-09472fab726b19e26a46d7b05426356a1ceff8cd.tar.gz tcl-09472fab726b19e26a46d7b05426356a1ceff8cd.tar.bz2 |
Basic implementation of TIP#57 - TclX's [lassign] command into Tcl core
Not a direct copy
* Better use of Tcl object API
* More extensive test suite
* More extensive documentation
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 6423e4f..3c4b7b7 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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.h,v 1.140 2004/01/13 23:15:03 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.141 2004/01/17 00:28:08 dkf Exp $ */ #ifndef _TCLINT @@ -1910,6 +1910,8 @@ EXTERN int Tcl_JoinObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LappendObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); +EXTERN int Tcl_LassignObjCmd _ANSI_ARGS_((ClientData clientData, + Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LindexObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LinsertObjCmd _ANSI_ARGS_((ClientData clientData, |