Skip to content
This repository has been archived by the owner on Jul 9, 2018. It is now read-only.

Commit

Permalink
Add some calls to UnknownVerb() to better support alternate natural l…
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGriffith committed Aug 20, 2014
1 parent 9acf355 commit 854286e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions parserm.h
Expand Up @@ -3070,6 +3070,7 @@ Constant UNLIT_BIT = 32;
! (that is, VERB ... or XXX,VERB ...), give it to the parser to get
! on with and forget about the question...

first_word = UnknownVerb(first_word);
if (first_word) {
if ((first_word->#dict_par1) & DICT_VERB) {
CopyBuffer(buffer, buffer2);
Expand All @@ -3078,6 +3079,7 @@ Constant UNLIT_BIT = 32;
if (NumberWords(parse2) > 2) {
j = WordValue(2, parse2);
k = WordValue(3, parse2);
k = UnknownVerb(k);
if (j == ',//' && k && (k->#dict_par1) & DICT_VERB) {
CopyBuffer(buffer, buffer2);
return REPARSE_CODE;
Expand Down

0 comments on commit 854286e

Please sign in to comment.