Merge branch 'master' into magic-8.2

This commit is contained in:
Tim Edwards 2020-01-04 03:00:05 -05:00
commit d3d3f9d220
2 changed files with 6 additions and 1 deletions

View File

@ -391,6 +391,9 @@ typedef struct celldef
* with the option "gds readonly true".
* CDVISITED indicates that at least one instance of the cell was
* already output during a file write.
* CDDEREFERENCE is a flag indicating that when loading or expanding
* children of a cell, the path should be ignored and the cell
* path should be searched for the location.
*/
#define CDAVAILABLE 0x0001
@ -408,6 +411,7 @@ typedef struct celldef
#define CDPROCESSEDGDS 0x1000
#define CDVENDORGDS 0x2000
#define CDVISITED 0x4000
#define CDDEREFERENCE 0x8000
/*
* Description of an array.

View File

@ -527,7 +527,8 @@ drcCifCheck(arg)
}
if (drcCifValid == FALSE)
{
CIFCurStyle = CIFSaveStyle;
if (CIFSaveStyle != NULL)
CIFCurStyle = CIFSaveStyle;
return;
}