(xuloadrow): Add missing case for VAL_SYMBOL_SET for trailing
junk row check. (xuskipcommentlines): Make the function static.
This commit is contained in:
parent
bf94174f88
commit
d223865d2b
1 changed files with 2 additions and 1 deletions
|
@ -405,6 +405,7 @@ xuloadrow(int type, int row, struct value values[])
|
||||||
break;
|
break;
|
||||||
case VAL_STRING:
|
case VAL_STRING:
|
||||||
case VAL_SYMBOL:
|
case VAL_SYMBOL:
|
||||||
|
case VAL_SYMBOL_SET:
|
||||||
return gripe("Extra junk after the last column, read %s",
|
return gripe("Extra junk after the last column, read %s",
|
||||||
values[j].v_field.v_string);
|
values[j].v_field.v_string);
|
||||||
case VAL_DOUBLE:
|
case VAL_DOUBLE:
|
||||||
|
@ -417,7 +418,7 @@ xuloadrow(int type, int row, struct value values[])
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
xuskipcommentlines(FILE *fp)
|
xuskipcommentlines(FILE *fp)
|
||||||
{
|
{
|
||||||
int ch;
|
int ch;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue