# # # patch "ChangeLog" # from [c37b6f4112fa783d997cbe4b70971464a9834005] # to [72e34268d6b005b1cca96f380ef7a7460650aa1b] # # patch "work.cc" # from [5a1ae550863011a4dba19abc3f1fba84d5324a1d] # to [f298a32c9e1d5aafa207df089207087e40133272] # ============================================================ --- ChangeLog c37b6f4112fa783d997cbe4b70971464a9834005 +++ ChangeLog 72e34268d6b005b1cca96f380ef7a7460650aa1b @@ -1,6 +1,13 @@ +2006-03-05 Matthew Gregan + + * work.cc: Remove single quotes from the new adding, dropping, and + renaming messages to make them consistent with the existing update + message. + 2006-03-04 Derek Scherger - * tests/t_revert_move_to_renamed_dir.at: new test for bug reported by Thomas Keller + * tests/t_revert_move_to_renamed_dir.at: new test for bug reported + by Thomas Keller * testsuite.at: call it 2006-03-05 Richard Levitte ============================================================ --- work.cc 5a1ae550863011a4dba19abc3f1fba84d5324a1d +++ work.cc f298a32c9e1d5aafa207df089207087e40133272 @@ -912,7 +912,7 @@ = written_content.find(src_pth); if (i != written_content.end()) { - P(F("adding '%s'") % dst_pth); + P(F("adding %s") % dst_pth); file_data dat; source.get_file_content(i->second, dat); write_localized_data(dst_pth, dat.inner(), app.lua); @@ -935,11 +935,11 @@ = rename_add_drop_map.find(src_pth); if (i != rename_add_drop_map.end()) { - P(F("renaming '%s' to '%s'") % i->second % dst_pth); + P(F("renaming %s to %s") % i->second % dst_pth); safe_erase(rename_add_drop_map, src_pth); } else - P(F("adding '%s'") % dst_pth); + P(F("adding %s") % dst_pth); if (dst_pth == file_path()) { // root dir attach, so we move contents, rather than the dir itself