diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-08-11 13:26:10 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-08-11 13:26:10 (GMT) |
commit | 65e17722f171ca567827a4d59ea436f636f938d2 (patch) | |
tree | 451d47fff87eb5ac1a61afbfd2d8d408f50ac26e /generic/tclInt.h | |
parent | 632196139ecb87e0d5c65db14c7d1565a91a54a7 (diff) | |
download | tcl-65e17722f171ca567827a4d59ea436f636f938d2.zip tcl-65e17722f171ca567827a4d59ea436f636f938d2.tar.gz tcl-65e17722f171ca567827a4d59ea436f636f938d2.tar.bz2 |
TIP#136 IMPLEMENTATION. We now have an [lrepeat] command!
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 e25d632..0da497b 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.130 2003/07/24 18:16:30 mdejong Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.131 2003/08/11 13:26:13 dkf Exp $ */ #ifndef _TCLINT @@ -1893,6 +1893,8 @@ EXTERN int Tcl_LoadObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LrangeObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); +EXTERN int Tcl_LrepeatObjCmd _ANSI_ARGS_((ClientData clientData, + Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LreplaceObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_LsearchObjCmd _ANSI_ARGS_((ClientData clientData, |