chelper: fix for parsing headers with unprintable characters

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1279 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz
2010-08-12 14:24:08 +00:00
parent 3116f12c1b
commit 1298a4708a
2 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ type
public
origintype : TEntity;
names : TList;
constructor Create(AOffset: Integer=-1);
constructor Create(AOffset: Integer=-1); override;
destructor Destroy; override;
end;

View File

@ -28,7 +28,7 @@ type
const
EoLnChars = [#10,#13];
SpaceChars = [#32,#9];
InvsChars = SpaceChars;
InvsChars = [#0..#32];
WhiteSpaceChars = SpaceChars;
SpaceEolnChars = EoLnChars+SpaceChars;
NumericChars = ['0'..'9'];