Skip to content

Commit 9800d98

Browse files
Corrects "ext2spice hierarchy off" when subcircuits with ports are
present. Note, however, this fix breaks the use of "ext2spice subcircuit descend off" because subcircuits are always descended into. It's not clear that "subcircuit descend off" worked at all before, anyway. That still needs fixing.
1 parent d0f6dab commit 9800d98

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.3.467
1+
8.3.468

ext2spice/ext2spice.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,8 @@ CmdExtToSpice(w, cmd)
875875
sprintf(spcesDefaultOut, "%s.spice", inName);
876876

877877
/* Read the hierarchical description of the input circuit */
878-
if (EFReadFile(inName, TRUE, esDoExtResis, FALSE, TRUE) == FALSE)
878+
if (EFReadFile(inName, esDoHierarchy, esDoExtResis, FALSE, TRUE)
879+
== FALSE)
879880
{
880881
EFDone();
881882
return;

0 commit comments

Comments
 (0)