diff options
author | peter <peter@FreeBSD.org> | 1995-08-14 00:38:07 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-08-14 00:38:07 +0800 |
commit | 388294ef462d6a7de135800a9be3c1bac3a2834f (patch) | |
tree | 4daf54256cd119907578228f2ab7a83893070178 /CVSROOT | |
parent | 9165a63ce6285cc2c4d4baa1aa3c130b279932a3 (diff) | |
download | freebsd-ports-gnome-388294ef462d6a7de135800a9be3c1bac3a2834f.tar.gz freebsd-ports-gnome-388294ef462d6a7de135800a9be3c1bac3a2834f.tar.zst freebsd-ports-gnome-388294ef462d6a7de135800a9be3c1bac3a2834f.zip |
few hacks for CC line
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/cvsedit | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/CVSROOT/cvsedit b/CVSROOT/cvsedit index 687131c6cbe0..404ba870c7f3 100755 --- a/CVSROOT/cvsedit +++ b/CVSROOT/cvsedit @@ -6,7 +6,7 @@ # To use this, make it executable, and set your editinfo DEFAULT line: # DEFAULT /path/to/this/program # -# $Id: cvsedit,v 1.3 1995/08/05 10:58:54 peter Exp $ +# $Id: cvsedit,v 1.4 1995/08/05 13:13:50 peter Exp $ # # same rules as CVS @@ -60,8 +60,10 @@ while(<IN>) { next; } else { # Delete if they only have whitespace after them. - if (/^Reviewed by:$/ || /^Submitted by:/ || - /^Obtained from:$/) { + if (/^Reviewed by:$/i || + /^Submitted by:/i || + /^Obtained from:$/i || + /^CC:$/i) { next; } if ($blank && $first) { |