diff --git a/ChangeLog b/ChangeLog index 6050af2da17adeb0a93241ac341abb2ea54207f4..a210605487c02fcaf9d4b8f823e8265da1ad3d0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,46 @@ +2003-02-13 xfce + + * src/client.c: Fix a bug introduced by recent optimizations... + +2003-02-13 xfce + + * src/: client.c, events.c, frame.c, frame.h: Okay, promise, I'll + stop with optimizations :) + +2003-02-13 xfce + + * src/events.c: Fix a small glitch with shaped windows + +2003-02-13 xfce + + * src/frame.c: even more optimizations! + +2003-02-13 xfce + + * mcs-plugin/inline-icon.h, mcs-plugin/xfwm4_plugin.c, + src/client.c, src/client.h, src/events.c, src/frame.c, + src/keyboard.c, src/main.c, src/mywindow.c, src/spinning_cursor.c, + src/spinning_cursor.h, src/startup_notification.c: Ran indent on + sources + +2003-02-13 xfce + + * src/: client.c, client.h, frame.c: ...even more optimizations + +2003-02-13 xfce + + * src/: Makefile.am, Makefile.in, client.c, client.h, events.c, + frame.c, keyboard.c, mywindow.c, mywindow.h, session.c: Add + optimizations + +2003-02-12 xfce + + * src/frame.c: Unmap window sides when shaded + +2003-02-11 xfce + + * ChangeLog: Update ChangeLog + 2003-02-11 xfce * src/startup_notification.c: Add additional sanity checks to diff --git a/src/debug.h b/src/debug.h index 81c6a65377d46cbe902c9042648be1a0901739df..cd2558ad43f331063b10e8530a784dd170fd5c58 100644 --- a/src/debug.h +++ b/src/debug.h @@ -22,8 +22,7 @@ #include <stdio.h> #define DBG(fmt, args...) ({fprintf(stderr, __FILE__ ", line %d: ", __LINE__); fprintf(stderr , fmt , ## args );}) #else -/* #define DBG(fmt, args...) do {} while(0) */ -#define DBG(fmt, args...) +#define DBG(fmt, args...) do {} while(0) #endif #endif /* __DEBUG_H__ */