* Numeric chars allowed in identifier, no need to escape

This commit is contained in:
Michaël Van Canneyt 2022-04-02 10:07:11 +02:00
parent 56108f4799
commit 2b99abdd4d

View File

@ -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]:='\';