mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-28 09:06:31 +02:00
Added substitution for commas in SPICE output, because commas in
instance names and node names are basically fatal to running ngspice.
This commit is contained in:
+3
-1
@@ -209,8 +209,10 @@ EFArgs(argc, argv, err_result, argsProc, cdata)
|
||||
goto usage;
|
||||
if (strchr(cp, '!')) EFTrimFlags |= EF_TRIMGLOB;
|
||||
if (strchr(cp, '#')) EFTrimFlags |= EF_TRIMLOCAL;
|
||||
if (strchr(cp, ',')) EFTrimFlags |= EF_CONVERTCOMMAS;
|
||||
if (strchr(cp, ',')) EFTrimFlags |= EF_CONVERTCOMMA;
|
||||
if (strchr(cp, '=')) EFTrimFlags |= EF_CONVERTEQUAL;
|
||||
if (strchr(cp, '[')) EFTrimFlags |= EF_CONVERTBRACKETS;
|
||||
if (strchr(cp, ']')) EFTrimFlags |= EF_CONVERTBRACKETS;
|
||||
break;
|
||||
case 'C':
|
||||
EFCapThreshold = (EFCapValue)INFINITE_THRESHOLD_F;
|
||||
|
||||
Reference in New Issue
Block a user