# # # patch "ChangeLog" # from [3bdd07afdc48a0085b2c597110d31f5998ca9212] # to [4f710f5b097d35c41a66657fb474d7feef2847dc] # # patch "commands.cc" # from [a06be616bdfe6dab1d5c5c2e7ece181a933e2413] # to [d0db57a9543a5959f3f0230bee648f9155792b0f] # # patch "lua.cc" # from [928ccedf924a8a57675b289befd1956bd9654486] # to [428c82fdc531bd1129bb642c7423b666e93cf3dc] # ============================================================ --- ChangeLog 3bdd07afdc48a0085b2c597110d31f5998ca9212 +++ ChangeLog 4f710f5b097d35c41a66657fb474d7feef2847dc @@ -1,5 +1,7 @@ 2006-04-07 Matthew Gregan + * lua.cc, commands.cc: Tiny string cleanups. + * Makefile.am (distcleancheck_listfiles): Fix up find(1) syntax. 2006-04-07 Daniel Carosone ============================================================ --- commands.cc a06be616bdfe6dab1d5c5c2e7ece181a933e2413 +++ commands.cc d0db57a9543a5959f3f0230bee648f9155792b0f @@ -2904,7 +2904,7 @@ if (app.revision_selectors.size() == 0) { - P(F("updating along branch '%s'...") % app.branch_name); + P(F("updating along branch '%s'") % app.branch_name); set candidates; pick_update_candidates(r_old_id, app, candidates); N(!candidates.empty(), ============================================================ --- lua.cc 928ccedf924a8a57675b289befd1956bd9654486 +++ lua.cc 428c82fdc531bd1129bb642c7423b666e93cf3dc @@ -902,7 +902,7 @@ } } data dat; - L(FL("opening rcfile '%s' ...\n") % rc); + L(FL("opening rcfile '%s'\n") % rc); read_data_for_command_line(rc, dat); N(run_string(st, dat(), rc().c_str()), F("lua error while loading rcfile '%s'") % rc); @@ -915,7 +915,7 @@ I(st); if (path_exists(rc)) { - L(FL("opening rcfile '%s' ...\n") % rc); + L(FL("opening rcfile '%s'\n") % rc); N(run_file(st, rc.as_external()), F("lua error while loading '%s'") % rc); L(FL("'%s' is ok\n") % rc);