summaryrefslogtreecommitdiff
path: root/gcc/diagnostic.def
diff options
context:
space:
mode:
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-08 11:25:28 +0000
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-08 11:25:28 +0000
commita041dce9bcff11772bff0f263a691327cd580353 (patch)
tree02c6f66e4d65334dbb43574a28f4bc0c8f5deb9a /gcc/diagnostic.def
parentd88a0eed59183685a8310772fe51bdd40ccf1f77 (diff)
downloadgcc-a041dce9bcff11772bff0f263a691327cd580353.tar.gz
* diagnostic.def: Don't capitalize diagnostic descriptors.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54370 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.def')
-rw-r--r--gcc/diagnostic.def14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/diagnostic.def b/gcc/diagnostic.def
index 07aa49564dc..5ac353d2636 100644
--- a/gcc/diagnostic.def
+++ b/gcc/diagnostic.def
@@ -1,7 +1,7 @@
-DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "Fatal error: ")
-DEFINE_DIAGNOSTIC_KIND (DK_ICE, "Internal compiler error: ")
-DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "Sorry, unimplemented: ")
-DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "Error: ")
-DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "Warning: ")
-DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "Anachronism: ")
-DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "Note: ")
+DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "fatal error: ")
+DEFINE_DIAGNOSTIC_KIND (DK_ICE, "internal compiler error: ")
+DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "sorry, unimplemented: ")
+DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "error: ")
+DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "warning: ")
+DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "anachronism: ")
+DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "note: ")