Suppress debugging messages from the mbox provider.

svn path=/trunk/; revision=3902
This commit is contained in:
Ettore Perazzoli
2000-07-05 22:35:33 +00:00
parent 53bf8c9074
commit 1bd2181fcd
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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)