Browse Source

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

pre-master-46
pnenzi 23 years ago
parent
commit
541a78d8dc
  1. 3
      src/spicelib/parser/inpgtok.c

3
src/spicelib/parser/inpgtok.c

@ -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…
Cancel
Save