summaryrefslogtreecommitdiffstats
path: root/generic/tclDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-12-03 13:02:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-12-03 13:02:08 (GMT)
commit3ff398393a61d9fe1b2b7465c1d88404dbf0fe76 (patch)
tree515111b57bddc5e1a580a0ce3a02845d3e2eba47 /generic/tclDecls.h
parentef0bb68bcb7408ec078badf8cacadd093cd1eac8 (diff)
downloadtcl-3ff398393a61d9fe1b2b7465c1d88404dbf0fe76.zip
tcl-3ff398393a61d9fe1b2b7465c1d88404dbf0fe76.tar.gz
tcl-3ff398393a61d9fe1b2b7465c1d88404dbf0fe76.tar.bz2
Remove obsolete functions Tcl_GetDefaultEncodingDir and Tcl_SetDefaultEncodingDir
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r--generic/tclDecls.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h
index 1b7cf99..d38296d 100644
--- a/generic/tclDecls.h
+++ b/generic/tclDecls.h
@@ -964,10 +964,8 @@ TCLAPI int Tcl_WriteChars(Tcl_Channel chan, const char *src,
TCLAPI int Tcl_WriteObj(Tcl_Channel chan, Tcl_Obj *objPtr);
/* 340 */
TCLAPI char * Tcl_GetString(Tcl_Obj *objPtr);
-/* 341 */
-TCLAPI const char * Tcl_GetDefaultEncodingDir(void);
-/* 342 */
-TCLAPI void Tcl_SetDefaultEncodingDir(const char *path);
+/* Slot 341 is reserved */
+/* Slot 342 is reserved */
/* 343 */
TCLAPI void Tcl_AlertNotifier(ClientData clientData);
/* 344 */
@@ -2146,8 +2144,8 @@ typedef struct TclStubs {
int (*tcl_WriteChars) (Tcl_Channel chan, const char *src, int srcLen); /* 338 */
int (*tcl_WriteObj) (Tcl_Channel chan, Tcl_Obj *objPtr); /* 339 */
char * (*tcl_GetString) (Tcl_Obj *objPtr); /* 340 */
- const char * (*tcl_GetDefaultEncodingDir) (void); /* 341 */
- void (*tcl_SetDefaultEncodingDir) (const char *path); /* 342 */
+ void (*reserved341)(void);
+ void (*reserved342)(void);
void (*tcl_AlertNotifier) (ClientData clientData); /* 343 */
void (*tcl_ServiceModeHook) (int mode); /* 344 */
int (*tcl_UniCharIsAlnum) (int ch); /* 345 */
@@ -3142,10 +3140,8 @@ extern const TclStubs *tclStubsPtr;
(tclStubsPtr->tcl_WriteObj) /* 339 */
#define Tcl_GetString \
(tclStubsPtr->tcl_GetString) /* 340 */
-#define Tcl_GetDefaultEncodingDir \
- (tclStubsPtr->tcl_GetDefaultEncodingDir) /* 341 */
-#define Tcl_SetDefaultEncodingDir \
- (tclStubsPtr->tcl_SetDefaultEncodingDir) /* 342 */
+/* Slot 341 is reserved */
+/* Slot 342 is reserved */
#define Tcl_AlertNotifier \
(tclStubsPtr->tcl_AlertNotifier) /* 343 */
#define Tcl_ServiceModeHook \