diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-30 10:07:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-30 10:07:25 +0200 |
commit | f771391fd9c0a99e1652209a74c1687c77a7ab35 (patch) | |
tree | e7a995d52b7f61909294f2952d8b900ec1e1e1ee /src/vhdl/translate | |
parent | 3bce793cfe3bcf88065acbd1365976782746f5a4 (diff) | |
download | ghdl-f771391fd9c0a99e1652209a74c1687c77a7ab35.tar.gz ghdl-f771391fd9c0a99e1652209a74c1687c77a7ab35.tar.bz2 ghdl-f771391fd9c0a99e1652209a74c1687c77a7ab35.zip |
vhdl: renames disp_vhdl to prints
Diffstat (limited to 'src/vhdl/translate')
-rw-r--r-- | src/vhdl/translate/trans_analyzes.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/translate/trans_analyzes.adb b/src/vhdl/translate/trans_analyzes.adb index 2311b12eb..420d04c37 100644 --- a/src/vhdl/translate/trans_analyzes.adb +++ b/src/vhdl/translate/trans_analyzes.adb @@ -20,7 +20,7 @@ with Errorout; with Simple_IO; with Vhdl.Utils; use Vhdl.Utils; with Vhdl.Nodes_Walk; use Vhdl.Nodes_Walk; -with Vhdl.Disp_Vhdl; +with Vhdl.Prints; with Vhdl.Errors; use Vhdl.Errors; package body Trans_Analyzes is @@ -247,7 +247,7 @@ package body Trans_Analyzes is else Put (" "); end if; - Vhdl.Disp_Vhdl.Disp_Vhdl (El); + Vhdl.Prints.Disp_Vhdl (El); New_Line; Next (It); end loop; |