Remove ft_skywaterpdk, replace it by variable no_auto_braces
This commit is contained in:
parent
aab3371f36
commit
cd14f85cde
|
|
@ -8426,7 +8426,7 @@ static void inp_quote_params(struct card *c, struct card *end_c,
|
||||||
{
|
{
|
||||||
bool in_control = FALSE;
|
bool in_control = FALSE;
|
||||||
|
|
||||||
if (ft_skywaterpdk)
|
if (cp_getvar("no_auto_braces", CP_BOOL, NULL, 0))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (; c && c != end_c; c = c->nextcard) {
|
for (; c && c != end_c; c = c->nextcard) {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
||||||
|
|
||||||
bool ft_acctprint = FALSE, ft_noacctprint = FALSE, ft_listprint = FALSE;
|
bool ft_acctprint = FALSE, ft_noacctprint = FALSE, ft_listprint = FALSE;
|
||||||
bool ft_nodesprint = FALSE, ft_optsprint = FALSE, ft_noinitprint = FALSE;
|
bool ft_nodesprint = FALSE, ft_optsprint = FALSE, ft_noinitprint = FALSE;
|
||||||
bool ft_norefprint = FALSE, ft_skywaterpdk = FALSE;
|
bool ft_norefprint = FALSE;
|
||||||
bool ft_ngdebug = FALSE, ft_nginfo = FALSE, ft_stricterror = FALSE, ft_spiniterror = FALSE;
|
bool ft_ngdebug = FALSE, ft_nginfo = FALSE, ft_stricterror = FALSE, ft_spiniterror = FALSE;
|
||||||
bool ft_codemodelerror = FALSE, ft_osdierror = FALSE;
|
bool ft_codemodelerror = FALSE, ft_osdierror = FALSE;
|
||||||
|
|
||||||
|
|
@ -309,8 +309,6 @@ cp_usrset(struct variable *var, bool isset)
|
||||||
ft_ngdebug = isset;
|
ft_ngdebug = isset;
|
||||||
} else if (eq(var->va_name, "nginfo")) {
|
} else if (eq(var->va_name, "nginfo")) {
|
||||||
ft_nginfo = isset;
|
ft_nginfo = isset;
|
||||||
} else if (eq(var->va_name, "skywaterpdk")) {
|
|
||||||
ft_skywaterpdk = isset;
|
|
||||||
} else if (eq(var->va_name, "noinit")) {
|
} else if (eq(var->va_name, "noinit")) {
|
||||||
ft_noinitprint = isset;
|
ft_noinitprint = isset;
|
||||||
} else if (eq(var->va_name, "norefvalue")) {
|
} else if (eq(var->va_name, "norefvalue")) {
|
||||||
|
|
|
||||||
|
|
@ -250,7 +250,6 @@ extern bool ft_stricterror;
|
||||||
extern bool ft_spiniterror;
|
extern bool ft_spiniterror;
|
||||||
extern bool ft_codemodelerror;
|
extern bool ft_codemodelerror;
|
||||||
extern bool ft_osdierror;
|
extern bool ft_osdierror;
|
||||||
extern bool ft_skywaterpdk;
|
|
||||||
|
|
||||||
/* parse.c */
|
/* parse.c */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue