From 4681e58d7f3cda2a2ac6d05b6ec1a106f568e029 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 19 May 2012 19:32:40 -0500 Subject: Converted the Ledger build system to use CMake --- src/draft.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/draft.cc') diff --git a/src/draft.cc b/src/draft.cc index c5f37f42..a6f60520 100644 --- a/src/draft.cc +++ b/src/draft.cc @@ -276,7 +276,7 @@ xact_t * draft_t::insert(journal_t& journal) //added->code = matching->code; //added->note = matching->note; -#if defined(DEBUG_ON) +#if DEBUG_ON DEBUG("draft.xact", "Setting payee from match: " << added->payee); //if (added->code) // DEBUG("draft.xact", "Setting code from match: " << *added->code); @@ -381,14 +381,14 @@ xact_t * draft_t::insert(journal_t& journal) account_t * acct = NULL; if (! acct) { acct = journal.find_account_re(post.account_mask->str()); -#if defined(DEBUG_ON) +#if DEBUG_ON if (acct) DEBUG("draft.xact", "Found account as a regular expression"); #endif } if (! acct) { acct = journal.find_account(post.account_mask->str()); -#if defined(DEBUG_ON) +#if DEBUG_ON if (acct) DEBUG("draft.xact", "Found (or created) account by name"); #endif -- cgit v1.2.3