From ae62d7a503ad4201e16f904b5af175a158124b83 Mon Sep 17 00:00:00 2001 From: JimLewis Date: Wed, 7 Dec 2016 10:21:18 -0800 Subject: [PATCH] BlankLine now uses a null string "" rather than a string with a single character " " --- TranscriptPkg.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TranscriptPkg.vhd b/TranscriptPkg.vhd index b5f2b72..a88b00a 100644 --- a/TranscriptPkg.vhd +++ b/TranscriptPkg.vhd @@ -193,7 +193,7 @@ package body TranscriptPkg is ------------------------------------------------------------ begin for i in 1 to count loop - print(" ") ; + print("") ; end loop ; end procedure Blankline ;