Fixed a bug that caused V(x) elements to be wrongly parsed.
This commit is contained in:
parent
a6517ea488
commit
541a78d8dc
|
|
@ -14,7 +14,6 @@ Modified: 2000 AlansFixes
|
|||
*/
|
||||
|
||||
#include "ngspice.h"
|
||||
#include <stdio.h>
|
||||
#include "iferrmsg.h"
|
||||
#include "inpdefs.h"
|
||||
#include "inp.h"
|
||||
|
|
@ -176,6 +175,8 @@ int INPgetNetTok(char **line, char **token, int gobble)
|
|||
break;
|
||||
if (*point == ',')
|
||||
break;
|
||||
if (*point == ')')
|
||||
break;
|
||||
}
|
||||
|
||||
/* now copy found token into *token */
|
||||
|
|
|
|||
Loading…
Reference in New Issue