OSDN Git Service

Fix whitespace in a table within a comment. This is
authorkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 7 Jan 2007 03:26:06 +0000 (03:26 +0000)
committerkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 7 Jan 2007 03:26:06 +0000 (03:26 +0000)
wonderful example of why tabs are evil.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120545 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 4df2107..116d4ac 100644 (file)
@@ -1,5 +1,9 @@
 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.
 
 2007-01-06  Steven G. Kargl  <kargl@gcc.gnu.org>
index af281f7..76dee50 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.