diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-09-24 09:51:46 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-09-24 09:51:46 (GMT) |
| commit | 9abf6cbb332214b31762b125c7e35a0702838d60 (patch) | |
| tree | 55b6d6da125149d35ee53c44836935643bc70c13 | |
| parent | b36bc6ff611fa68517db5c694d8228a17679dc5e (diff) | |
| download | tcl-9abf6cbb332214b31762b125c7e35a0702838d60.zip tcl-9abf6cbb332214b31762b125c7e35a0702838d60.tar.gz tcl-9abf6cbb332214b31762b125c7e35a0702838d60.tar.bz2 | |
Remove obsolete debugging macro. [Bug 2124814]
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | generic/tclOOMethod.c | 8 |
2 files changed, 4 insertions, 7 deletions
@@ -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. |
