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
+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>
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;
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;
break;
default :
- push_char(c);
+ push_char(tolower(c));
break;
}
}