summaryrefslogtreecommitdiffabout
path: root/lib
authorMichael Krelin <hacker@klever.net>2008-06-29 18:47:27 (UTC)
committer Michael Krelin <hacker@klever.net>2008-06-29 18:47:27 (UTC)
commit73f6183b26b1ebc460a27554b71e44037c07e09c (patch) (side-by-side diff)
treeebb9d9af6008a3946220e1b65f6b464ccf687546 /lib
parent12837594b705ad10fdadfd0ba1bfc2249b3b1264 (diff)
downloadlibopkele-73f6183b26b1ebc460a27554b71e44037c07e09c.zip
libopkele-73f6183b26b1ebc460a27554b71e44037c07e09c.tar.gz
libopkele-73f6183b26b1ebc460a27554b71e44037c07e09c.tar.bz2
fixed debugging info settings for htmltidy
Thanks to Brian Muller for spotting it! Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'lib') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/discovery.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/discovery.cc b/lib/discovery.cc
index 984e308..bd1f917 100644
--- a/lib/discovery.cc
+++ b/lib/discovery.cc
@@ -253,9 +253,12 @@ namespace opkele {
util::tidy_doc_t td = util::tidy_doc_t::create();
if(!td)
throw exception_tidy(OPKELE_CP_ "failed to create htmltidy document");
-#ifndef NDEBUG
- td.opt_set(TidyQuiet,false);
+#ifdef NDEBUG
+ td.opt_set(TidyQuiet,true);
td.opt_set(TidyShowWarnings,false);
+#else /* NDEBUG */
+ td.opt_set(TidyQuiet,false);
+ td.opt_set(TidyShowWarnings,true);
#endif /* NDEBUG */
td.opt_set(TidyForceOutput,true);
td.opt_set(TidyXhtmlOut,true);