diff options
author | terry%netscape.com <> | 1998-08-29 04:17:59 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-08-29 04:17:59 +0200 |
commit | 0dd735023225eb19ed12ff93625450e2da6c3860 (patch) | |
tree | 132910d7a6fe9b09f7d73213cbc3601dd62437ff /processmail | |
parent | 320338232c1432dc41fbbef901f279d79062804b (diff) | |
download | bugzilla-0dd735023225eb19ed12ff93625450e2da6c3860.tar.gz bugzilla-0dd735023225eb19ed12ff93625450e2da6c3860.tar.xz |
Fixed bug 544 -- now use unified diffs instead of context diffs in mail.
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/processmail b/processmail index 36935185e..b64d2e8a4 100755 --- a/processmail +++ b/processmail @@ -206,7 +206,7 @@ foreach i $argv { puts $fid $text close $fid if {[Different $old $new]} { - catch {exec diff -c $old $new > $diffs} + catch {exec diff -u $old $new > $diffs} set tolist [fixaddresses [list $bug(assigned_to) $bug(reporter)]] set cclist [fixaddresses $bug(cclist)] set logstr "Bug $i changed" |