Browse Source

Added code by H.Tanaka for .global keyword deployment

pre-master-46
sjborley 21 years ago
parent
commit
34ec9d7bf0
  1. 10
      src/spicelib/parser/inp2dot.c

10
src/spicelib/parser/inp2dot.c

@ -719,8 +719,14 @@ INP2dot(void *ckt, INPtables *tab, card *current, void *task, void *gnode)
else if ((strcmp(token, ".options") == 0)||
(strcmp(token,".option")==0) ||
(strcmp(token,".opt")==0)) {
rtn = dot_options(line, ckt, tab, current, task, gnode, foo);
goto quit;
rtn = dot_options(line, ckt, tab, current, task, gnode, foo);
goto quit;
}
/* Added by H.Tanaka to find .global option */
else if (strcmp(token, ".global") == 0) {
rtn = 0;
LITERR(" Warning: .global not yet implemented - ignored \n");
goto quit;
}
LITERR(" unimplemented control card - error \n");
quit:

Loading…
Cancel
Save