]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* parse.c (next_fixed): Remove superfluous string concatenation.
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Wed, 11 Jan 2006 19:51:16 +0000 (20:51 +0100)
committerTobias Schlüter <tobi@gcc.gnu.org>
Wed, 11 Jan 2006 19:51:16 +0000 (20:51 +0100)
From-SVN: r109599

gcc/fortran/ChangeLog
gcc/fortran/parse.c

index 4dbc1565d2a0622d7c05f7efb279b536dc536fb4..f82ff40597d7968d922574a3ecec03a96f645bb1 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-11  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       * parse.c (next_fixed): Remove superfluous string concatenation.
+
 2006-01-11  Bernhard Fischer  <rep.nop@aon.at>
 
        PR fortran/25486
index 87f36df23fd2a3367e1cdc3eb0aee61f5834b24b..6fd3322dbc12bff0c73176518a31d2ee760be677 100644 (file)
@@ -464,7 +464,7 @@ next_fixed (void)
 
 blank_line:
   if (digit_flag)
-    gfc_warning ("Statement label in blank line will be " "ignored at %C");
+    gfc_warning ("Statement label in blank line will be ignored at %C");
   gfc_advance_line ();
   return ST_NONE;
 }