diff options
author | dgp <dgp@users.sourceforge.net> | 2005-04-08 20:03:43 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-04-08 20:03:43 (GMT) |
commit | 41e18fd7dc1745c26225b36db8e215cca756fa3d (patch) | |
tree | c057b88614cde6c0e7d8d9236a87529e68589735 /generic/tclInt.h | |
parent | 0d5c0c748ea73b02b422d5cf116b12754a28775e (diff) | |
download | tcl-41e18fd7dc1745c26225b36db8e215cca756fa3d.zip tcl-41e18fd7dc1745c26225b36db8e215cca756fa3d.tar.gz tcl-41e18fd7dc1745c26225b36db8e215cca756fa3d.tar.bz2 |
* generic/tclInt.h (TclGetEncodingFromObj): New function to
* generic/tclEncoding.c (TclGetEncodingFromObj): retrieve a
Tcl_Encoding value, as well as cache it in the internal rep
of a new "encoding" Tcl_ObjType.
* generic/tclCmdAH.c (Tcl_EncodingObjCmd): Updated to call
new function so that Tcl_Encoding's used by [encoding convert*]
routines are not freed too quickly. [Bug 1077262]
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 6efa576..b8f5871 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.220 2005/04/05 16:19:09 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.221 2005/04/08 20:04:04 dgp Exp $ */ #ifndef _TCLINT @@ -1884,6 +1884,8 @@ MODULE_SCOPE void TclFinalizeThreadData _ANSI_ARGS_((void)); MODULE_SCOPE int TclFSFileAttrIndex _ANSI_ARGS_((Tcl_Obj *pathPtr, CONST char *attributeName, int *indexPtr)); MODULE_SCOPE Tcl_Obj * TclGetBgErrorHandler _ANSI_ARGS_((Tcl_Interp *interp)); +MODULE_SCOPE int TclGetEncodingFromObj _ANSI_ARGS_((Tcl_Interp *interp, + Tcl_Obj *objPtr, Tcl_Encoding *encodingPtr)); MODULE_SCOPE int TclGetNamespaceFromObj _ANSI_ARGS_(( Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Namespace **nsPtrPtr)); |