summaryrefslogtreecommitdiff
path: root/gcc/ada/par-ch10.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2006-10-31 18:03:00 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2006-10-31 18:03:00 +0000
commitdca43555aa8579e7c62a6b999dc642953d716267 (patch)
tree210e88f1b370a362322502fdbd53699e73f2d29c /gcc/ada/par-ch10.adb
parente17ff23ff6e813ba4a3c03f2afef62d5b7122798 (diff)
downloadgcc-dca43555aa8579e7c62a6b999dc642953d716267.tar.gz
2006-10-31 Robert Dewar <dewar@adacore.com>
* par-ch10.adb (P_Context_Clause): Minor error message fix git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118288 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/par-ch10.adb')
-rw-r--r--gcc/ada/par-ch10.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/par-ch10.adb b/gcc/ada/par-ch10.adb
index bedb679081a..8066336e491 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;