aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2005-06-16 10:38:22 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2005-06-16 10:38:22 +0200
commit84f8ad69c8d065ce18acee11f7d091092ae0d907 (patch)
tree5ac8ec94bef2852e5d6997c72a29f2e4583228d6 /gcc
parent0772a6ea04339a2bd6bbae174c0dd0a47b9f69bd (diff)
downloadgcc-84f8ad69c8d065ce18acee11f7d091092ae0d907.zip
gcc-84f8ad69c8d065ce18acee11f7d091092ae0d907.tar.gz
gcc-84f8ad69c8d065ce18acee11f7d091092ae0d907.tar.bz2
exp_intr.adb, [...]: Minor fix to error message text
2005-06-14 Robert Dewar <dewar@adacore.com> * exp_intr.adb, par-ch5.adb: Minor fix to error message text From-SVN: r101036
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/exp_intr.adb2
-rw-r--r--gcc/ada/par-ch5.adb4
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/exp_intr.adb b/gcc/ada/exp_intr.adb
index b46b8f0..6d5b3da 100644
--- a/gcc/ada/exp_intr.adb
+++ b/gcc/ada/exp_intr.adb
@@ -735,7 +735,7 @@ package body Exp_Intr is
and then Is_Entity_Name (Nam2)
and then Entity (Prefix (Nam1)) = Entity (Nam2)
then
- Error_Msg_N ("Abort may take time to complete?", N);
+ Error_Msg_N ("abort may take time to complete?", N);
Error_Msg_N ("\deallocation might have no effect?", N);
Error_Msg_N ("\safer to wait for termination.?", N);
end if;
diff --git a/gcc/ada/par-ch5.adb b/gcc/ada/par-ch5.adb
index 6293ad6..c0298ae 100644
--- a/gcc/ada/par-ch5.adb
+++ b/gcc/ada/par-ch5.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2004, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2005, 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- --
@@ -1215,7 +1215,7 @@ package body Ch5 is
-- Here we have an else that really is an else
if Present (Else_Statements (If_Node)) then
- Error_Msg_SP ("Only one ELSE part allowed");
+ Error_Msg_SP ("only one ELSE part allowed");
Append_List
(P_Sequence_Of_Statements (SS_Eftm_Eltm_Sreq),
Else_Statements (If_Node));