From e814abdc993285f2a35a00be2a89b45874d0598b Mon Sep 17 00:00:00 2001 From: das Date: Tue, 30 Jun 2009 14:21:44 +0000 Subject: s/Tcl_PanicEx/TclPanic/; improve clang assert Tcl_Panic macrology --- generic/tkInt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generic/tkInt.h b/generic/tkInt.h index 672160c..b5072be 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.104 2009/06/30 00:56:29 das Exp $ + * RCS: $Id: tkInt.h,v 1.105 2009/06/30 14:21:44 das Exp $ */ #ifndef _TKINT @@ -988,9 +988,9 @@ MODULE_SCOPE Tcl_HashTable tkPredefBitmapTable; #if defined(PURIFY) && defined(__clang__) && !defined(CLANG_ASSERT) #include #define CLANG_ASSERT(x) assert(x) -#define Tcl_PanicEx Tcl_Panic +#define TclPanic Tcl_Panic #undef Tcl_Panic -#define Tcl_Panic(f, ...) Tcl_PanicEx(f,##__VA_ARGS__); CLANG_ASSERT(0) +#define Tcl_Panic(f, ...) do { TclPanic(f,##__VA_ARGS__); CLANG_ASSERT(0); } while(0) #elif !defined(CLANG_ASSERT) #define CLANG_ASSERT(x) #endif -- cgit v0.12