From a4a45cb4d61e028a19be3fb5be889e62dc83214e Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 4 Jun 2010 03:40:39 -0400 Subject: any and all do not need to be reserved tokens --- src/commodity.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/commodity.cc b/src/commodity.cc index c2fc0935..2ed6553b 100644 --- a/src/commodity.cc +++ b/src/commodity.cc @@ -418,9 +418,7 @@ namespace { { switch (buf[0]) { case 'a': - return (std::strcmp(buf, "and") == 0 || - std::strcmp(buf, "any") == 0 || - std::strcmp(buf, "all") == 0); + return std::strcmp(buf, "and") == 0; case 'd': return std::strcmp(buf, "div") == 0; case 'e': -- cgit v1.2.3