From b8acbc62e413932dd68bb8c674ec2182e5b099f6 Mon Sep 17 00:00:00 2001 From: Bob Rudis Date: Sat, 10 Sep 2016 08:13:25 -0400 Subject: [PATCH] dir cleanup --- .DS_Store | Bin 8196 -> 0 bytes .gitignore | 1 + .travis.yml | 3 --- NAMESPACE | 1 - R/aaa.r | 53 ---------------------------------------------------- R/tidy.r | 2 ++ man/tidy_html.Rd | 4 ++++ man/tidy_options.Rd | 29 ---------------------------- src/htmltidy.cpp | 14 +------------- src/tidylib.c | 4 ++-- 10 files changed, 10 insertions(+), 101 deletions(-) delete mode 100644 .DS_Store delete mode 100644 R/aaa.r delete mode 100644 man/tidy_options.Rd diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index f0966368f0105ef5dfd93e3a3df55f38fc37d2de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHMTWl3Y7@n^!u+bdx zs3bKiM&px2qlpGJ8WVj`3sUG8Jo=*Q|J=N6I4x5#JISwDkYJnj1Uyh{NbGK=BQJX8@|dr zHpC3X48#n?48#n?4BQ9|(4H-dGReL#N8>tXAZFmEWI((hQgjJSM>sAqe05M29svl& z5g;to=AuEEiZC7FxI`ME0vSpuLlGS@Aj8R?iu}?Mj!Tr`4AJ2O(aeZWCWa7UZm5y$WcE=`=}GrK&qK%rf_WA<3Sm9uOs*b^p=9K&{(9t_fC zDj!o7HOs5V#+EEu+K^hluOT(Ia_M4fEnl&3pQ5VDoV(h3a(nh4c>Cz5$But~;^g-~ z{3sbh^p;^&S1|U|zjWDtp-X=5C^?iHo`A0DwXN&cS8Hv3R^D~Gt-WTJ&+v(i4b+XE zq&M%{BSVg#{-OrnjVL3ZD)6e7t)(*?`)C#<(W*mLUluGo*&^)Co=LSdYjw5rRIV!-pB`7Hn6E8Vxvyq+kqBgHgSJTFhPuhtbEYj# zi?t;RZ&!N@@;Rh&nYKcyK!e(scZY`P4t;4}Rl8c@CzNes?hf4#I)_b%rhg#4rjqWe zWwNJKlztJh#xP7nsZV>7sQUDRs3Czdm5Y6A4!eV`pdB*9b}*Mc%AR2d*;n563REPZp$2uR$2>G*CGN$2SdAvMqXQ436B%s9Hf)EEofyW$ z@Dbnbh*$6q-p5BcjxTWvr|}KG#n1Q+f8xBn!IGkk+lx0W5q}Xz ztDa;WeYGojabg)K*KcT>skPqlGXA<;i1*g2nbor*H8)>W!xaL!REwefq`pGk6?GLV z`*JbQCW$BKXmcl%%_fqqxjWP$pLQnnu1n4n0_2M9&QC5>XpQiau&XsB7l{?XOXX;& zY(wQ!nW1zFC^3pV3>mG zsKi_>AbBoB8m(A|Hj?K?^q?30*o*;~*nvS<*hS(T!6y%9L5nGCDDG2PjC#M;R}3)b5fQU<=P?p#TwsHE0SxW+jDH!*-4h7 zxQlKvUMB;k(tox%|F50=`~P)jjoo7gVg~+C44|x~yQPWlc(OODIBTcq+D?}!!f#w+ y7(!Ke948Eq + #include #include -// #ifdef __linux__ -// #include -// #include -// #endif -// -// #ifdef __APPLE__ -// #include -// #include -// #endif - -// libtidy docs: -// http://api.html-tidy.org/tidy/tidylib_api_5.2.0/tidyenum_8h.html#a3a1401652599150188a168dade7dc150 - // NOTE: cannot do "using namespace Rcpp;" b/c of annoying warnings about the // ambiguity of 'yes'. diff --git a/src/tidylib.c b/src/tidylib.c index e77f701..cca3685 100755 --- a/src/tidylib.c +++ b/src/tidylib.c @@ -1079,8 +1079,8 @@ int tidyDocSaveStdout( TidyDocImpl* doc ) #endif int status = 0; - uint outenc = cfg( doc, TidyOutCharEncoding ); - uint nl = cfg( doc, TidyNewline ); +// uint outenc = cfg( doc, TidyOutCharEncoding ); +// uint nl = cfg( doc, TidyNewline ); // StreamOut* out = TY_(FileOutput)( doc, stdout, outenc, nl ); // if ( 0 == status )