aboutsummaryrefslogtreecommitdiffstats
path: root/src/errorout.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-06-24 22:07:30 +0200
committerTristan Gingold <tgingold@free.fr>2019-06-25 18:12:07 +0200
commitcd012609781465b65bbe3b1ef8e1fe4fa9c8398d (patch)
tree3ad4716784b36ec3a990524bc0a530440c8a3d76 /src/errorout.adb
parent2cc51506353d819639dcfce2d4e9bb9407a67a6d (diff)
downloadghdl-cd012609781465b65bbe3b1ef8e1fe4fa9c8398d.tar.gz
ghdl-cd012609781465b65bbe3b1ef8e1fe4fa9c8398d.tar.bz2
ghdl-cd012609781465b65bbe3b1ef8e1fe4fa9c8398d.zip
Error_Msg_Option: do not raise exception.
Diffstat (limited to 'src/errorout.adb')
-rw-r--r--src/errorout.adb8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/errorout.adb b/src/errorout.adb
index 5e706c475..485f5fef3 100644
--- a/src/errorout.adb
+++ b/src/errorout.adb
@@ -388,15 +388,9 @@ package body Errorout is
Report_Handler.Message_Group.all (False);
end Report_End_Group;
- procedure Error_Msg_Option_NR (Msg: String) is
+ procedure Error_Msg_Option (Msg: String) is
begin
Report_Msg (Msgid_Error, Option, No_Source_Coord, Msg);
- end Error_Msg_Option_NR;
-
- procedure Error_Msg_Option (Msg: String; Args : Earg_Arr := No_Eargs) is
- begin
- Report_Msg (Msgid_Error, Option, No_Source_Coord, Msg, Args);
- raise Option_Error;
end Error_Msg_Option;
procedure Warning_Msg_Option (Id : Msgid_Warnings; Msg: String) is