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/tclBasic.c | |
parent | e33a0caada7278a17cac044aaf753e624489623d (diff) | |
download | tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.zip tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.gz tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.bz2 |
Implemented [lreverse] from TIP#272
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 40cc7fb..22b715a 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -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: tclBasic.c,v 1.216 2006/11/04 00:09:33 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.217 2006/11/09 15:19:02 dkf Exp $ */ #include "tclInt.h" @@ -139,6 +139,7 @@ static CmdInfo builtInCmds[] = { {"lrange", Tcl_LrangeObjCmd, NULL, 1}, {"lrepeat", Tcl_LrepeatObjCmd, NULL, 1}, {"lreplace", Tcl_LreplaceObjCmd, NULL, 1}, + {"lreverse", Tcl_LreverseObjCmd, NULL, 1}, {"lsearch", Tcl_LsearchObjCmd, NULL, 1}, {"lset", Tcl_LsetObjCmd, TclCompileLsetCmd, 1}, {"lsort", Tcl_LsortObjCmd, NULL, 1}, |