File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,9 @@ package TranscriptPkg is
71
71
-- Write to TranscriptFile when open. Write to OUTPUT when not open or IsTranscriptMirrored
72
72
procedure WriteLine (buf : inout line ) ;
73
73
procedure Print (s : string ) ;
74
+
75
+ -- Create "count" number of blank lines
76
+ procedure BlankLine (count : integer := 1 ) ;
74
77
75
78
end TranscriptPkg ;
76
79
@@ -183,5 +186,14 @@ package body TranscriptPkg is
183
186
write (buf, s) ;
184
187
WriteLine (buf) ;
185
188
end procedure Print ;
189
+
190
+ -- ----------------------------------------------------------
191
+ procedure BlankLine (count : integer := 1 ) is
192
+ -- ----------------------------------------------------------
193
+ begin
194
+ for i in 1 to count loop
195
+ print(" " ) ;
196
+ end loop ;
197
+ end procedure Blankline ;
186
198
187
199
end package body TranscriptPkg ;
You can’t perform that action at this time.
0 commit comments