From a4177f6ddcac3a374aa3ce838a400ff9f94d1aae Mon Sep 17 00:00:00 2001 From: Cary R Date: Sat, 19 Dec 2015 10:48:00 -0800 Subject: [PATCH] VHDL: Add some missing newlines --- vhdlpp/parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vhdlpp/parse.y b/vhdlpp/parse.y index fa5deded7..0c6884253 100644 --- a/vhdlpp/parse.y +++ b/vhdlpp/parse.y @@ -669,7 +669,7 @@ component_configuration block_configuration_opt K_end K_for ';' { - sorrymsg(@1, "Component configuration in not yet supported"); + sorrymsg(@1, "Component configuration in not yet supported\n"); if($3) delete $3; delete $2; } @@ -882,7 +882,7 @@ configuration_declaration K_end K_configuration_opt identifier_opt ';' { if(design_entities.find(lex_strings.make($4)) == design_entities.end()) - errormsg(@4, "Couldn't find entity %s used in configuration declaration", $4); + errormsg(@4, "Couldn't find entity %s used in configuration declaration\n", $4); //choose_architecture_for_entity(); sorrymsg(@1, "Configuration declaration is not yet supported.\n"); }