diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-08-02 13:03:46 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-08-02 13:03:46 (GMT) |
commit | 9b243d8861a7ba96ab64928edc9795beb02a4997 (patch) | |
tree | 9ef3ff93e52517d40aa719be4a9fcb282bf74aa5 /generic/tclInt.h | |
parent | caf9f82c8c57615ac532064b2eb0c7649ea7eb40 (diff) | |
download | tcl-9b243d8861a7ba96ab64928edc9795beb02a4997.zip tcl-9b243d8861a7ba96ab64928edc9795beb02a4997.tar.gz tcl-9b243d8861a7ba96ab64928edc9795beb02a4997.tar.bz2 |
Added *unsupported* command to report an object's representation.
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 2f521eb..ac3b3bc 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.431 2009/07/22 19:54:49 nijtmans Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.432 2009/08/02 13:03:47 dkf Exp $ */ #ifndef _TCLINT @@ -3138,6 +3138,9 @@ MODULE_SCOPE int Tcl_RegsubObjCmd(ClientData clientData, MODULE_SCOPE int Tcl_RenameObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); +MODULE_SCOPE int Tcl_RepresentationCmd(ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *const objv[]); MODULE_SCOPE int Tcl_ReturnObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); |