avoid false warnings of model not found
This commit is contained in:
parent
ec2d885494
commit
cb025a98a8
|
|
@ -1906,6 +1906,9 @@ static int is_a_modelname(const char *s)
|
|||
{
|
||||
char *st;
|
||||
double testval;
|
||||
/*token contains a '=' */
|
||||
if (strchr(s, '='))
|
||||
return FALSE;
|
||||
/* first character of model name is character from alphabet */
|
||||
if (isalpha_c(s[0]))
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Reference in New Issue