aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authortoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-30 21:57:22 +0000
committertoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-30 21:57:22 +0000
commit441f1997f46672fc21e9649c5f106ec7a2a73389 (patch)
tree0c3b53d34f91f922fd3a55c9744fe578d7abbbb1 /libgfortran
parent82321185c8294ea00f993c68599f801a45023386 (diff)
2003-10-30 Toon Moene <toon@moene.indiv.nluug.nl>
PR fortran/12702 * io/list_read.c (eat_spaces): Treat tab as space. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@73104 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog5
-rw-r--r--libgfortran/io/list_read.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 8f68711d79e..24bbcfe55b2 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,8 @@
+2003-10-30 Toon Moene <toon@moene.indiv.nluug.nl>
+
+ PR fortran/12702
+ * io/list_read.c (eat_spaces): Treat tab as space.
+
2003-10-30 Lars Segerlund <Lars.Segerlund@comsys.se>
* intrinsics/random.c: Add reference to paper containing algorithm.
diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c
index 574976db416..c960473bf41 100644
--- a/libgfortran/io/list_read.c
+++ b/libgfortran/io/list_read.c
@@ -177,7 +177,7 @@ eat_spaces (void)
{
c = next_char ();
}
- while (c == ' ');
+ while (c == ' ' || c == '\t');
unget_char (c);
return c;