From e1538252925e91f9da84bdb8249c4d38455daa69 Mon Sep 17 00:00:00 2001 From: joe Date: Sun, 18 Aug 2002 23:01:17 +0000 Subject: * Improve a debugging message. * There was too much space (three lines) between the diffs in commit mails. This reduces it to one. Submitted by: fanf --- CVSROOT/log_accum.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CVSROOT') diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 47e6639f7aa3..7da38b1e2579 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -600,8 +600,8 @@ sub do_diff { "-r$prev_rev", "-r$rev", $file); } - print "Generating diff: $cfg::PROG_CVS " . - "@args" if $cfg::DEBUG; + print "Generating diff: $cfg::PROG_CVS @args\n" + if $cfg::DEBUG; open(DIFF, "-|") || exec $cfg::PROG_CVS, @args; while() { $diff .= $_; @@ -616,7 +616,7 @@ sub do_diff { $diff_length . " bytes > " . $cfg::MAX_DIFF_SIZE * 1024 . " bytes)!\n"; } - &append_line($outfile, "\n\n$diff"); + &append_line($outfile, "$diff"); } } -- cgit