* Support for bitpacked and removed stray debug writeln

git-svn-id: trunk@10029 -
This commit is contained in:
michael 2008-01-27 10:48:45 +00:00
parent cb7bcd39f0
commit 4c7aab2f15

View File

@ -657,7 +657,7 @@ var
i: Integer;
PageDoc: TXMLDocument;
Filename: String;
begin WriteLn('!!!!!!!!!!!!!!!!!!!!!!1');
begin
if Engine.Output <> '' then
Engine.Output := IncludeTrailingBackSlash(Engine.Output);
for i := 0 to PageInfos.Count - 1 do
@ -1647,7 +1647,10 @@ var
begin
if not (Element.Parent is TPasVariant) then
if Element.IsPacked then
AppendKw(CodeEl, 'packed record')
If Element.IsBitPacked then
AppendKw(CodeEl, 'bitpacked record')
else
AppendKW(CodeEl, 'packed record')
else
AppendKw(CodeEl, 'record');