--- dmd-0.111/dmd/src/dmd/lexer.c.orig Tue Dec 21 13:47:50 2004 +++ dmd-0.111/dmd/src/dmd/lexer.c Fri Jan 21 12:25:00 2005 @@ -1940,6 +1940,7 @@ { "function", TOKfunction }, { "is", TOKidentity }, + { "isnot", TOKnotidentity }, { "if", TOKif }, { "else", TOKelse }, { "while", TOKwhile }, @@ -2038,7 +2039,7 @@ Token::tochars[TOKequal] = "=="; Token::tochars[TOKnotequal] = "!="; // Token::tochars[TOKidentity] = "==="; - Token::tochars[TOKnotidentity] = "!=="; +// Token::tochars[TOKnotidentity] = "!=="; Token::tochars[TOKunord] = "!<>="; Token::tochars[TOKue] = "!<>";