Merge pull request #63 from jdeng/fix1

Using context for parsing.
This commit is contained in:
Vincent Richard 2013-12-25 09:34:58 -08:00
commit d385c15e71

View File

@ -185,7 +185,7 @@ shared_ptr <word> word::parseNext
pos += 2; // ?=
shared_ptr <word> w = make_shared <word>();
w->parse(buffer, wordStart, pos, NULL);
w->parse(ctx, buffer, wordStart, pos, NULL);
if (newPosition)
*newPosition = pos;