diff --git a/VERSION b/VERSION index 27c0d0eb..49633366 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.224 +8.3.225 diff --git a/calma/CalmaWrite.c b/calma/CalmaWrite.c index 7ee0fe5a..b7e59ba2 100644 --- a/calma/CalmaWrite.c +++ b/calma/CalmaWrite.c @@ -879,6 +879,17 @@ calmaProcessDef(def, outf, do_library) return (0); } + /* + * Flag an error if attempting to write the default (UNNAMED) cell + * into GDS. This is not strictly an error but is almost certainly + * not what the user intended. + */ + + if (!strcmp(def->cd_name, UNNAMED)) + { + TxError("Error: Cell has the default name \"%s\"!\n", UNNAMED); + } + /* * Check if this is a read-only file that is supposed to be copied * verbatim from input to output. If so, do the direct copy. If