Fix bug 968596: rename NibbleIterator::chunk_size() to limit() and update ptc and pt-osc.

This commit is contained in:
Daniel Nichter
2013-02-28 19:26:04 -07:00
parent 15341b4e0e
commit 5a34a0817e
4 changed files with 12 additions and 12 deletions

View File

@@ -405,9 +405,9 @@ sub one_nibble {
return $self->{one_nibble};
}
sub chunk_size {
sub limit {
my ($self) = @_;
return $self->{limit} + 1;
return $self->{limit};
}
sub set_chunk_size {