summaryrefslogtreecommitdiffstats
path: root/generic/tclObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2013-02-28 08:29:35 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2013-02-28 08:29:35 (GMT)
commitf7bc070f5bcd0e22d26f0a91e35e2198179043b5 (patch)
treef08644fdd361765ac6483ac3eff46d5ebfa2cc27 /generic/tclObj.c
parent2df87623753815574b45b67ea674aee7211cd286 (diff)
downloadtcl-f7bc070f5bcd0e22d26f0a91e35e2198179043b5.zip
tcl-f7bc070f5bcd0e22d26f0a91e35e2198179043b5.tar.gz
tcl-f7bc070f5bcd0e22d26f0a91e35e2198179043b5.tar.bz2
Allow Tcl to be compiled even if Tcl_Eval, Tcl_GetVar, ... are macros.
FossilOrigin-Name: 03b46ac836729ae7fa1112d6f609d6b803095d59
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r--generic/tclObj.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c
index a40a29d..54ec25a 100644
--- a/generic/tclObj.c
+++ b/generic/tclObj.c
@@ -1733,8 +1733,8 @@ Tcl_InvalidateStringRep(
*----------------------------------------------------------------------
*/
-#ifdef TCL_MEM_DEBUG
#undef Tcl_NewBooleanObj
+#ifdef TCL_MEM_DEBUG
Tcl_Obj *
Tcl_NewBooleanObj(
@@ -1782,6 +1782,7 @@ Tcl_NewBooleanObj(
*----------------------------------------------------------------------
*/
+#undef Tcl_DbNewBooleanObj
#ifdef TCL_MEM_DEBUG
Tcl_Obj *
@@ -1834,6 +1835,7 @@ Tcl_DbNewBooleanObj(
*----------------------------------------------------------------------
*/
+#undef Tcl_SetBooleanObj
void
Tcl_SetBooleanObj(
register Tcl_Obj *objPtr, /* Object whose internal rep to init. */
@@ -2393,8 +2395,8 @@ UpdateStringOfDouble(
*----------------------------------------------------------------------
*/
-#ifdef TCL_MEM_DEBUG
#undef Tcl_NewIntObj
+#ifdef TCL_MEM_DEBUG
Tcl_Obj *
Tcl_NewIntObj(
@@ -2434,6 +2436,7 @@ Tcl_NewIntObj(
*----------------------------------------------------------------------
*/
+#undef Tcl_SetIntObj
void
Tcl_SetIntObj(
register Tcl_Obj *objPtr, /* Object whose internal rep to init. */