Fixed a bug that caused V(x) elements to be wrongly parsed.

This commit is contained in:
pnenzi 2003-08-24 12:41:41 +00:00
parent a6517ea488
commit 541a78d8dc
1 changed files with 2 additions and 1 deletions

View File

@ -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 */