Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Fix touching? menu
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan committed Aug 12, 2014
1 parent 5036ee0 commit 44c231e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/ReadStream.as
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ public class ReadStream {
}
// certain punctuation marks following an argument start a new token
// example: 'touching %m?' (question mark after arg starts a new token) vs. 'loud?' (doesn't)
token += ch;
if (isArg && (ch == '?' || ch == '-')) break;
token += ch;
i++;
}
return token;
Expand Down

0 comments on commit 44c231e

Please sign in to comment.