Compare commits

..

No commits in common. "1f1a11f886b0ac5ae964808ac0cf7d56fae42833" and "1b7bb91cf19231d65a061a4a6d0a03030943de00" have entirely different histories.

2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit e417a01f9a093cdf7b07abff78a5196d1f07e61d Subproject commit f05f3945fe68a1a8b03deb967d71a0dcb70ba90d

View File

@ -45,9 +45,9 @@ get_number(data, str)
if ([[str]] == '$') if ([[str]] == '$')
{ {
if (start == 0 - 1) if (start == 0 - 1)
start = [data + LOCATION_LENGTH] - 1; start = data + LOCATION_LENGTH;
else else
stop = [data + LOCATION_LENGTH] - 1; stop = data + LOCATION_LENGTH;
[str] = [str] + 1; [str] = [str] + 1;
} }
else if (isdigit([[str]])) else if (isdigit([[str]]))