Browse Source

BlitzMax is not case sensitive. Fixes #173.

woollybah 9 năm trước cách đây
mục cha
commit
95677da024
1 tập tin đã thay đổi với 0 bổ sung11 xóa
  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