From 0d41d4247ec10b7373b5060a0062518607d9021f Mon Sep 17 00:00:00 2001 From: John Weldon Date: Tue, 3 Jul 2012 12:10:53 -0700 Subject: [PATCH] Fix tidylib.obj : error LNK2019: unresolved external symbol _prvTidyCleanGoogleDocument referenced in function _tidyDocCleanAndRepair Signed-off-by: Michael[tm] Smith --- src/tidylib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tidylib.c b/src/tidylib.c index 5756d19..c9af802 100644 --- a/src/tidylib.c +++ b/src/tidylib.c @@ -1281,8 +1281,10 @@ int tidyDocCleanAndRepair( TidyDocImpl* doc ) TY_(CleanDocument)( doc ); /* clean up html exported by Google Focs */ +#if 0 if ( gdoc ) TY_(CleanGoogleDocument)( doc ); +#endif /* Move terminating
tags from out of paragraphs */ /*! Do we want to do this for all block-level elements? */