# # patch "ChangeLog" # from [68cc54b322b57fb892a5eeaa1f5e4d24eaa1bf0e] # to [18533a8e1477cb1e752ef1eae31ea4cdb120254c] # # patch "app_state.cc" # from [843ebcf38ec1ce9d803a7317695f8bfc1db72b7a] # to [976ea774c4fd1df5e9d63ee5b19f1a925899c12b] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,9 @@ 2005-07-16 Nathaniel Smith + * app_state.cc (require_working_copy): Oops, make it compile. + +2005-07-16 Nathaniel Smith + * app_state.{cc,hh} (require_working_copy): Take an optional argument to give more details about why a working copy was required. --- app_state.cc +++ app_state.cc @@ -90,7 +90,7 @@ { N(found_working_copy, F("working copy directory required but not found%s%s") - % (explanation ? "\n" : "") % explanation); + % (explanation.empty() ? "" : "\n") % explanation); write_options(); }