list_read.c (namelist_read): Convert variable names to lower case, so that mixed...
authorVictor Leikehman <lei@il.ibm.com>
Tue, 10 Aug 2004 13:34:04 +0000 (13:34 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Tue, 10 Aug 2004 13:34:04 +0000 (13:34 +0000)
2004-08-10  Victor Leikehman  <lei@il.ibm.com>

* io/list_read.c (namelist_read): Convert variable names
to lower case, so that mixed-case names are recognized.
Don't read beyond terminating slash.

From-SVN: r85751

libgfortran/ChangeLog
libgfortran/io/list_read.c

index de54f0f21155ac885a6f3af6fad2b1724e675230..c6f1a8df05d0dcbcd434521fa1a810cffd97144c 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-10  Victor Leikehman  <lei@il.ibm.com>
+
+       * io/list_read.c (namelist_read): Convert variable names
+       to lower case, so that mixed-case names are recognized.
+       Don't read beyond terminating slash.
+
 2004-08-09  Richard Henderson  <rth@redhat.com>
            Roger Sayle  <roger@eyesopen.com>
 
index bcfbc83fe7b618ad5159d8652f2e1824c25de1f1..92ef1e7b9e92198172193db675676da3c441adc5 100644 (file)
@@ -1453,11 +1453,15 @@ restart:
   match_namelist_name(ioparm.namelist_name, ioparm.namelist_name_len);
 
   /* Ready to read namelist elements */
-  for (;;)
+  while (!input_complete)
     {
       c = next_char ();
       switch (c)
         {
+        case '/':
+          input_complete = 1;
+          next_record (0);
+          break;
         case '&':
           match_namelist_name("end",3);
           return;
@@ -1475,7 +1479,7 @@ restart:
           name_matched = 1;
           nl = find_nml_node (saved_string);
           if (nl == NULL)
-            internal_error ("Can not found a valid namelist var!");
+            internal_error ("Can not match a namelist variable");
           free_saved();
 
           len = nl->len;
@@ -1528,7 +1532,7 @@ restart:
           break;
 
         default :
-          push_char(c);
+          push_char(tolower(c));
           break;
         }
    }