When I consolidated the two duplicate lord string sets, the ordering of 'prelords' wasn't the same as 'lords'. I didn't realize that it mattered when I picked the first set of the two. Reinstated the 'lords' ordering, so far all the cases that broke are working again. I've left in the 'prelords' variant in, stubbed out, in case we encounter a reason why this is still required.

This commit is contained in:
wrenczes@gmail.com
2010-12-18 04:01:13 +00:00
parent c7666a933a
commit ba975d1b37

View File

@@ -11,7 +11,8 @@
#include "Translate.h"
#include "ThisDescriptor.h"
const string kLordKeywords[] = { "foreach(", "lord(", "aslongas(", "teach(", "all(" };
//const string kPreLordKeywords[] = { "foreach(", "lord(", "aslongas(", "teach(", "all(" };
const string kLordKeywords[] = { "lord(", "foreach(", "aslongas(", "teach(", "all(" };
const size_t kLordKeywordsCount = 5;
const string kThisKeywords[] = { "this(", "thisforeach(" };