Ray Malone - 2003-01-20

I have not tried ..65 but .63 did not put a blank line between the last End; of a nested procedure and the begining of the parent procedure.
Here is an example

Procedure Parent
var
  I : Integer;

Procedure NestedOne;
begin
  DoOne;
end;

Procedure NestedTwo;
Begin
  DoTwo;
End; // Next line should be a blank line but isn't
Begin// This is the begin for the parent Procedure
   DoOne;
   DoTwo;
end;