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;
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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;