diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-09 15:19:01 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-09 15:19:01 (GMT) |
commit | b07bb89f2a73a18a69b6666c3484f3e2271f53bf (patch) | |
tree | c99380de0e89bc86e1accd8eef22508a2650412a /generic/tclInt.h | |
parent | e33a0caada7278a17cac044aaf753e624489623d (diff) | |
download | tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.zip tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.gz tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.bz2 |
Implemented [lreverse] from TIP#272
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 54a27bc..796ae21 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.292 2006/11/02 16:57:54 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.293 2006/11/09 15:19:03 dkf Exp $ */ #ifndef _TCLINT @@ -2426,6 +2426,9 @@ MODULE_SCOPE int Tcl_LrepeatObjCmd(ClientData clientData, MODULE_SCOPE int Tcl_LreplaceObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); +MODULE_SCOPE int Tcl_LreverseObjCmd(ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[]); MODULE_SCOPE int Tcl_LsearchObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); |