OSDN Git Service

* parse.c (next_fixed): Remove superfluous string concatenation.
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jan 2006 19:51:16 +0000 (19:51 +0000)
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jan 2006 19:51:16 +0000 (19:51 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109599 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 4dbc156..f82ff40 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 87f36df..6fd3322 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;
 }