diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-03 00:01:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-03 00:01:35 (GMT) |
commit | 5f4768a439995933c1aefee69f6753f04a9984c0 (patch) | |
tree | d8574173fb0bbbbc67b3cb510304789c3bad6721 /generic/tclInt.h | |
parent | cfff639c9c08071cfdae47df0a73070c387255b7 (diff) | |
download | tcl-5f4768a439995933c1aefee69f6753f04a9984c0.zip tcl-5f4768a439995933c1aefee69f6753f04a9984c0.tar.gz tcl-5f4768a439995933c1aefee69f6753f04a9984c0.tar.bz2 |
Implemented TIP#195 - tcl::prefix command. [Patch 1040206]
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index cbb66b7..4704927 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -15,7 +15,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.400 2008/09/28 13:46:11 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.401 2008/10/03 00:01:35 dkf Exp $ */ #ifndef _TCLINT @@ -3035,6 +3035,7 @@ MODULE_SCOPE int Tcl_PackageObjCmd(ClientData clientData, MODULE_SCOPE int Tcl_PidObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); +MODULE_SCOPE Tcl_Command TclInitPrefixCmd(Tcl_Interp *interp); MODULE_SCOPE int Tcl_PutsObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); |