new-func revision 247bf378605811d695e968dbe930a7fc45c0038e
#
*
*
# $Id$
# Given two CHANGES files, list [bug] entries present in the
# first one but not in the second one.
#
use FileHandle;
# $/ = "";
# Read the CHANGES file $fn and return a hash of change
# texts and categories indexed by change number.
sub readfile {
my $changes = { };
if (m/^\s*(\d+)\.\s+\[(\w+)\]/) {
$changeid = $1;
$category = $2;
# print "*** $1 $2\n";
next;
} elsif (m/^# /) {
next;
}
next;
}
$changeid =~ s/\.$//;
}
return $changes;
}
} else {
my $c3 = { };
}
}
}