fix if clause

This commit is contained in:
Mark Andrews 2005-05-16 06:57:51 +00:00
parent c6313caa6c
commit 35665db4e4

View file

@ -14,7 +14,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: update_branches,v 1.4 2005/05/16 06:39:39 marka Exp $
# $Id: update_branches,v 1.5 2005/05/16 06:57:51 marka Exp $
%branches = ();
%whom = ();
@ -28,7 +28,7 @@
open(BRANCHES, "<doc/private/branches") || die "can't open util/branches: $!";
while (<BRANCHES>) {
chomp;
next if (/^-*$/
next if (/^-/);
next if (/^Branch/);
$c = "";
if (m/\(.*\)/) {