From patchwork Wed Sep 15 21:00:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Patch committed: Do not capitalize warning messages Date: Wed, 15 Sep 2010 11:00:51 -0000 From: Ian Taylor X-Patchwork-Id: 64904 Message-Id: To: "Joseph S. Myers" Cc: gcc-patches@gcc.gnu.org "Joseph S. Myers" writes: > On Wed, 15 Sep 2010, Ian Lance Taylor wrote: > >> - "Bad option %s to optimize attribute.", p); >> + "bad option %s to optimize attribute.", p); > > There's still an inappropriate trailing "." here.... Oh yeah. Fixed like so. Bootstrapped and tested on x86_64-unknown-linux-gnu. Committed as obvious. Ian Index: c-family/c-common.c =================================================================== --- c-family/c-common.c (revision 164316) +++ c-family/c-common.c (working copy) @@ -7730,7 +7730,7 @@ parse_optimize_options (tree args, bool ret = false; if (attr_p) warning (OPT_Wattributes, - "bad option %s to optimize attribute.", p); + "bad option %s to optimize attribute", p); else warning (OPT_Wpragmas, "bad option %s to pragma attribute", p);