diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-08-28 20:14:04 +0800 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-08-28 20:14:04 +0800 |
commit | cac6ac3d34f392a99a54fd9007ac76ca8b93b4a1 (patch) | |
tree | 765b263c04d48fe561284bdf63f6f3d254f4e22d /CVSROOT/cvsedit | |
parent | 90b76135625ac0b4cf31c0f0bdb16cfcf242f195 (diff) | |
download | freebsd-ports-gnome-cac6ac3d34f392a99a54fd9007ac76ca8b93b4a1.tar.gz freebsd-ports-gnome-cac6ac3d34f392a99a54fd9007ac76ca8b93b4a1.tar.zst freebsd-ports-gnome-cac6ac3d34f392a99a54fd9007ac76ca8b93b4a1.zip |
Back out the very last change to this. Go back to dieing
on empty log messages, far far better than allowing the commit.
I will have to wait to talk to Peter on a longer term fix.
Submitted by: David Greenman
Diffstat (limited to 'CVSROOT/cvsedit')
-rwxr-xr-x | CVSROOT/cvsedit | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CVSROOT/cvsedit b/CVSROOT/cvsedit index 5b03b2842070..968665459329 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.6 1995/08/23 11:42:34 peter Exp $ +# $Id: cvsedit,v 1.7 1995/08/27 23:07:50 peter Exp $ # # same rules as CVS @@ -80,9 +80,9 @@ close(IN); close(OUT); # sanity check... -#if (!$first) { -# die("cvsedit: Empty log message not permitted!\n"); -#} +if (!$first) { + die("cvsedit: Empty log message not permitted!\n"); +} unlink($filename . "~"); # Nuke likely editor backups.. unlink($filename . ".bak"); # Nuke likely editor backups.. |