Skip to content

Commit

Permalink
Rename Done -> done
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvp committed Jan 15, 2015
1 parent bec365d commit 5f140ef
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ private void Canonicalize()
int i;
int j;
char last;
bool Done;
bool done;

_canonical = true;
_rangelist.Sort();
Expand All @@ -1078,15 +1078,15 @@ private void Canonicalize()

if (_rangelist.Count > 1)
{
Done = false;
done = false;

for (i = 1, j = 0; ; i++)
{
for (last = _rangelist[j]._last; ; i++)
{
if (i == _rangelist.Count || last == LastChar)
{
Done = true;
done = true;
break;
}

Expand All @@ -1101,7 +1101,7 @@ private void Canonicalize()

j++;

if (Done)
if (done)
break;

if (j < i)
Expand Down

0 comments on commit 5f140ef

Please sign in to comment.