Browse Source

* Numeric chars allowed in identifier, no need to escape

Michaël Van Canneyt 3 years ago
parent
commit
2b99abdd4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-css/src/fpcsstree.pp

+ 1 - 1
packages/fcl-css/src/fpcsstree.pp

@@ -445,7 +445,7 @@ begin
   While iIn<=Length(S) do
     begin
     C:=S[iIn];
-    If Not (C in ['a'..'z','A'..'Z','_','-']) then
+    If Not (C in ['a'..'z','A'..'Z','_','-','0'..'9']) then
       begin
       inc(iOut);
       Result[iOut]:='\';