Corrected an error in the DEF read that skips a line if a cell
cannot be found. This particularly screws up the file parsing if the "END COMPONENTS" line is skipped.
This commit is contained in:
parent
944c6a5373
commit
8ef32cb8c1
|
|
@ -1112,7 +1112,7 @@ DefReadComponents(f, rootDef, sname, oscale, total)
|
||||||
if ((defMacro == NULL) || ((defUse = DBCellNewUse(defMacro, usename))
|
if ((defMacro == NULL) || ((defUse = DBCellNewUse(defMacro, usename))
|
||||||
== NULL))
|
== NULL))
|
||||||
{
|
{
|
||||||
LefEndStatement(f);
|
if (defMacro != NULL) LefEndStatement(f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
DBLinkCell(defUse, rootDef);
|
DBLinkCell(defUse, rootDef);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue