Browse Source

* Patch from Zeljko Avramovic to allow uppercase characters in non-quoted names (Bug ID 26831)

git-svn-id: trunk@28788 -
michael 10 years ago
parent
commit
edd96fc46b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-json/src/jsonscanner.pp

+ 1 - 1
packages/fcl-json/src/jsonscanner.pp

@@ -342,7 +342,7 @@ begin
         Inc(TokenStr);
         Result := tkSquaredBraceClose;
       end;
-    'a'..'z','_':
+    'a'..'z','A'..'Z','_':
       begin
         TokenStart := TokenStr;
         repeat