From: fred Date: Sun, 24 Mar 2002 19:51:29 +0000 (+0000) Subject: lilypond-0.1.8 X-Git-Tag: release/1.5.59~4251 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1abebfa6b8497d4192884e6f9a4e9682799f07fa;p=lilypond.git lilypond-0.1.8 --- diff --git a/lily/include/debug.hh b/lily/include/debug.hh index 18055e067f..aca896309d 100644 --- a/lily/include/debug.hh +++ b/lily/include/debug.hh @@ -12,8 +12,8 @@ #include "lily-proto.hh" #include "warn.hh" -void error_t(const String& s, Time_description const & t_tdes); -void error_t(String const &s, const Moment &when); +void error_t (const String& s, Time_description const & t_tdes); +void error_t (String const &s, const Moment &when); #define WARN warnout << "warning: "<<__FUNCTION__ << "(): " extern ostream &warnout ; @@ -24,11 +24,13 @@ extern ostream *mlog; // debugging extern Dstream *monitor; // monitor - #ifdef NPRINT -#define mtor if (0) *monitor // clever hack +/** + Global debug output. Compare with cin, cout, cerr, DOUT is DEBUG OUTPUT + */ +#define DOUT if (0) *monitor // clever hack #else -#define mtor if (check_debug) monitor->identify_as(__PRETTY_FUNCTION__) +#define DOUT if (check_debug) monitor->identify_as (__PRETTY_FUNCTION__) #endif extern bool check_debug;