From: Robert Dewar Date: Tue, 31 Oct 2006 18:03:00 +0000 (+0100) Subject: par-ch10.adb (P_Context_Clause): Minor error message fix X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aae02e6a54268917087e18208664048475c4e2e9;p=platform%2Fupstream%2Fgcc.git par-ch10.adb (P_Context_Clause): Minor error message fix 2006-10-31 Robert Dewar * par-ch10.adb (P_Context_Clause): Minor error message fix From-SVN: r118288 --- diff --git a/gcc/ada/par-ch10.adb b/gcc/ada/par-ch10.adb index bedb679..8066336 100644 --- a/gcc/ada/par-ch10.adb +++ b/gcc/ada/par-ch10.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -222,9 +222,9 @@ package body Ch10 is else Item := First (Config_Pragmas); Error_Msg_N - ("cannot compile configuration pragmas with gcc", Item); + ("cannot compile configuration pragmas with gcc!", Item); Error_Msg_N - ("use gnatchop -c to process configuration pragmas!", Item); + ("\use gnatchop -c to process configuration pragmas!", Item); raise Unrecoverable_Error; end if; @@ -854,7 +854,7 @@ package body Ch10 is return Item_List; elsif Ada_Version < Ada_05 then - Error_Msg_SP ("PRIVATE WITH is an Ada 2005 extension"); + Error_Msg_SP ("`PRIVATE WITH` is an Ada 2005 extension"); Error_Msg_SP ("\unit must be compiled with -gnat05 switch"); end if;