mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 11:29:29 +02:00
* Support for bitpacked and removed stray debug writeln
git-svn-id: trunk@10029 -
This commit is contained in:
parent
cb7bcd39f0
commit
4c7aab2f15
@ -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');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user