# # patch "ChangeLog" # from [045a2f32f1c9544b7087f96aa36776c42f57a845] # to [3744baa9157af8704734b41924b96acf50211dce] # # patch "commands.cc" # from [332ead267de5db69ff9f08ce64550fdeab69577a] # to [2c501d537b44e2a5d7535d83cc661bf006ad37b5] # ======================================================================== --- ChangeLog 045a2f32f1c9544b7087f96aa36776c42f57a845 +++ ChangeLog 3744baa9157af8704734b41924b96acf50211dce @@ -1,3 +1,8 @@ +2005-09-05 Matt Johnston + + * commands.cc (dump_diffs): don't use the terminal width to + print ===== seperators. + 2005-09-05 Matthew Gregan * paths.cc (find_and_go_to_working_copy): Create root and bookdir ======================================================================== --- commands.cc 332ead267de5db69ff9f08ce64550fdeab69577a +++ commands.cc 2c501d537b44e2a5d7535d83cc661bf006ad37b5 @@ -2476,7 +2476,8 @@ bool new_is_archived, diff_type type) { - std::string patch_sep = std::string(guess_terminal_width(), '='); + // 60 is somewhat arbitrary, but less than 80 + std::string patch_sep = std::string(60, '='); for (change_set::delta_map::const_iterator i = deltas.begin(); i != deltas.end(); ++i) {