瀏覽代碼

BlitzMax is not case sensitive. Fixes #173.

woollybah 9 年之前
父節點
當前提交
95677da024
共有 1 個文件被更改,包括 0 次插入11 次删除
  1. 0 11
      expr.bmx

+ 0 - 11
expr.bmx

@@ -2117,17 +2117,6 @@ Type TIdentExpr Extends TExpr
 	End Method
 
 	Method IdentErr( errorDetails:String = Null )
-		If scope
-			Local close$
-			For Local decl:TDecl=EachIn scope.Decls()
-				If IdentLower()=decl.IdentLower()
-					close=decl.ident
-				EndIf
-			Next
-			If close And ident<>close Then
-				Err "Identifier '"+ident+"' not found - perhaps you meant '"+close+"'?"
-			EndIf
-		EndIf
 		If errorDetails Then
 			Err errorDetails
 		Else