From 64f4351d83fedbfffc2a4ccdbd5e423ff7fa3958 Mon Sep 17 00:00:00 2001 From: Piotr Trojanek Date: Mon, 30 Nov 2020 12:09:12 +0100 Subject: [PATCH] [Ada] Remove inconsistent colons in messages for Ada 83 violations gcc/ada/ * par-ch3.adb (P_Modular_Type_Definition): Remove colon from error message. * sem_ch11.adb (Check_Duplication): Likewise. * sem_ch3.adb (Derived_Type_Declaration): Likewise. --- gcc/ada/par-ch3.adb | 2 +- gcc/ada/sem_ch11.adb | 2 +- gcc/ada/sem_ch3.adb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/ada/par-ch3.adb b/gcc/ada/par-ch3.adb index a2ff668..b746036 100644 --- a/gcc/ada/par-ch3.adb +++ b/gcc/ada/par-ch3.adb @@ -2430,7 +2430,7 @@ package body Ch3 is begin if Ada_Version = Ada_83 then - Error_Msg_SC ("(Ada 83): modular types not allowed"); + Error_Msg_SC ("(Ada 83) modular types not allowed"); end if; Typedef_Node := New_Node (N_Modular_Type_Definition, Token_Ptr); diff --git a/gcc/ada/sem_ch11.adb b/gcc/ada/sem_ch11.adb index 940c93b..48c9855 100644 --- a/gcc/ada/sem_ch11.adb +++ b/gcc/ada/sem_ch11.adb @@ -127,7 +127,7 @@ package body Sem_Ch11 is and then Comes_From_Source (Id) then Error_Msg_N - ("(Ada 83): duplicate exception choice&", Id); + ("(Ada 83) duplicate exception choice&", Id); end if; end if; end if; diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb index 00834ce..9b4d2cc 100644 --- a/gcc/ada/sem_ch3.adb +++ b/gcc/ada/sem_ch3.adb @@ -16943,7 +16943,7 @@ package body Sem_Ch3 is then if Ada_Version = Ada_83 and then Comes_From_Source (Indic) then Error_Msg_N - ("(Ada 83): premature use of type for derivation", Indic); + ("(Ada 83) premature use of type for derivation", Indic); end if; end if; -- 2.7.4