Added code by H.Tanaka for .global keyword deployment

This commit is contained in:
sjborley 2005-05-06 07:14:39 +00:00
parent 47af112683
commit 34ec9d7bf0
1 changed files with 8 additions and 2 deletions

View File

@ -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: