summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--generic/tclOOMethod.c8
2 files changed, 4 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index e67c879..150e93d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2008-09-24 Donal K. Fellows <dkf@users.sf.net>
+ * generic/tclOOMethod.c (DBPRINT): Remove obsolete debugging macro.
+ [Bug 2124814]
+
TIP #316 IMPLEMENTATION
* generic/tcl.decls, generic/tclFileName.c (Tcl_GetSizeFromStat, etc):
diff --git a/generic/tclOOMethod.c b/generic/tclOOMethod.c
index dfd2d14..34a3172 100644
--- a/generic/tclOOMethod.c
+++ b/generic/tclOOMethod.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOOMethod.c,v 1.19 2008/09/23 05:05:54 dkf Exp $
+ * RCS: @(#) $Id: tclOOMethod.c,v 1.20 2008/09/24 09:51:47 dkf Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -18,12 +18,6 @@
#include "tclOOInt.h"
#include "tclCompile.h"
-#if 0
-#define DBPRINT(format, ...) (fprintf(stderr, "DEBUG:" format "\n", __VA_ARGS__))
-#else
-#define DBPRINT(format, ...) ((void) 0)
-#endif
-
/*
* Structure used to help delay computing names of objects or classes for
* [info frame] until needed, making invokation faster in the normal case.