[svk-commit] r2525 - in trunk: lib/SVK
nobody at bestpractical.com
nobody at bestpractical.com
Mon Aug 6 10:54:26 EDT 2007
Author: jesse
Date: Mon Aug 6 10:54:25 2007
New Revision: 2525
Modified:
trunk/ (props changed)
trunk/lib/SVK/Util.pm
Log:
r65154 at pinglin: jesse | 2007-08-06 10:53:31 -0400
It always annoyed me that "svk ci" popped up gvim in read-only mode on
Win32. Today I decided to chase that down. Closing this open handle
fixes it. -David Golden
Modified: trunk/lib/SVK/Util.pm
==============================================================================
--- trunk/lib/SVK/Util.pm (original)
+++ trunk/lib/SVK/Util.pm Mon Aug 6 10:54:25 2007
@@ -277,6 +277,7 @@
open $fh, $file or die $!;
local $/;
$content = <$fh>;
+ close $fh;
}
my $time = time;
More information about the svk-commit
mailing list