Browse Source

Don't check .params as they will fall through anyway.

pre-master-46
Holger Vogt 8 months ago
parent
commit
805f14e50b
  1. 4
      src/spicelib/parser/inp2dot.c

4
src/spicelib/parser/inp2dot.c

@ -838,6 +838,10 @@ INP2dot(CKTcircuit *ckt, INPtables *tab, struct card *current, TSKtask *task, CK
/* don't have to do anything, since models were all done in /* don't have to do anything, since models were all done in
* pass 1 */ * pass 1 */
goto quit; goto quit;
} else if (strcmp(token, ".param") == 0) {
/* don't have to do anything, since params were all done
* elsewhere */
goto quit;
} else if ((strcmp(token, ".width") == 0) || } else if ((strcmp(token, ".width") == 0) ||
strcmp(token, ".print") == 0 || strcmp(token, ".plot") == 0) { strcmp(token, ".print") == 0 || strcmp(token, ".plot") == 0) {
/* obsolete - ignore */ /* obsolete - ignore */

Loading…
Cancel
Save