]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix whitespace in a table within a comment.
authorSteven G. Kargl <kargl@gcc.gnu.org>
Sun, 7 Jan 2007 03:26:06 +0000 (03:26 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Sun, 7 Jan 2007 03:26:06 +0000 (03:26 +0000)
Fix whitespace in a table within a comment.  This is
wonderful example of why tabs are evil.

From-SVN: r120545

gcc/fortran/ChangeLog
gcc/fortran/array.c

index 4df2107f5a641f867ed40fb86bc0e9e96c0c4578..116d4ac7e36b61b79bd4874811e4a8aa3c83726b 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * array.c: Fix whitespace in comment table.
+
 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        * array.c, bbt.c, check.c:  Update copyright years.  Whitespace.
index af281f78c10b7bec2a2dadcf1cdc88e40a49d5b2..76dee5084045563783fbb0868ce3131e242e26fa 100644 (file)
@@ -265,12 +265,12 @@ gfc_resolve_array_spec (gfc_array_spec *as, int check_constant)
 
        Parsed       Lower   Upper  Returned
        ------------------------------------
-         :       NULL    NULL   AS_DEFERRED (*)
-         x        1       x     AS_EXPLICIT
-         x:      x      NULL   AS_ASSUMED_SHAPE
-         x:y    x       y     AS_EXPLICIT
-         x:*    x      NULL   AS_ASSUMED_SIZE
-         *        1      NULL   AS_ASSUMED_SIZE
+         :           NULL    NULL   AS_DEFERRED (*)
+         x            1       x     AS_EXPLICIT
+         x:           x      NULL   AS_ASSUMED_SHAPE
+         x:y          x       y     AS_EXPLICIT
+         x:*          x      NULL   AS_ASSUMED_SIZE
+         *            1      NULL   AS_ASSUMED_SIZE
 
   (*) For non-pointer dummy arrays this is AS_ASSUMED_SHAPE.  This
   is fixed during the resolution of formal interfaces.