# # patch "ChangeLog" # from [fe6f3b4ee6fb1b43cfb90fd5a83d260af7b9c08b] # to [966c2ad1b5c6a81e2149b928cbe60a292c6c0a1b] # # patch "app_state.cc" # from [a7ed8e649668aca70e915e9071469219ecf9db75] # to [7a6eec6df5336f398ef9a587f8ffd102b7beba2e] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,10 @@ 2005-04-23 Nathaniel Smith + * app_state.cc (restriction_includes): Remove some L()'s that were + taking 5-6% of time in large tree diff. + +2005-04-23 Nathaniel Smith + * file_io.{cc,hh} (localized): Move from here... * transforms.{cc,hh} (localized): ...to here. Add lots of gunk to avoid calling iconv whenever possible. --- app_state.cc +++ app_state.cc @@ -187,7 +187,6 @@ static file_path dot("."); if (restrictions.empty()) { - L(F("empty restricted path set; '%s' included\n") % path()); return true; } @@ -198,7 +197,6 @@ if (restrictions.find(dot) != restrictions.end()) { - L(F("restricted path set cleared; '%s' included\n") % path()); return true; }