diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-06 06:35:33 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-06 06:35:33 +0800 |
commit | 1bd2181fcd4e95aa191a49428593fae777ae9260 (patch) | |
tree | ef93cbf24a1beb92deb11f4dc17724ee6e67fe1e /camel | |
parent | 53bf8c9074f73cbf5c2e180695dbe944ef3b5592 (diff) | |
download | gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar.gz gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar.bz2 gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar.lz gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar.xz gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.tar.zst gsoc2013-evolution-1bd2181fcd4e95aa191a49428593fae777ae9260.zip |
Suppress debugging messages from the mbox provider.
svn path=/trunk/; revision=3902
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-summary.c | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index bf6eaf7bdf..7ffdc5e58e 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-07-05 Ettore Perazzoli <ettore@helixcode.com> + + * providers/mbox/camel-mbox-summary.c (d): Define to empty so that + we get rid of a ton of debugging messages. + 2000-07-05 Jeffrey Stedfast <fejj@helixcode.com> * camel-mime-utils.h: Added prototype for uudecode_step diff --git a/camel/providers/mbox/camel-mbox-summary.c b/camel/providers/mbox/camel-mbox-summary.c index ebc607d9fa..7860d15296 100644 --- a/camel/providers/mbox/camel-mbox-summary.c +++ b/camel/providers/mbox/camel-mbox-summary.c @@ -31,7 +31,12 @@ #include <stdlib.h> #define io(x) -#define d(x) (x) + +#if 0 +# define d(x) (x) +#else +# define d(x) +#endif #define CAMEL_MBOX_SUMMARY_VERSION (0x1000) |