Repair the broken --enable-oldapps option
This commit is contained in:
parent
8d9f69f7bf
commit
d4fcef9bf6
12
src/main.c
12
src/main.c
|
|
@ -365,6 +365,12 @@ com_snsave(wordlist *wl)
|
||||||
NG_IGNORE(wl);
|
NG_IGNORE(wl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
com_optran(wordlist *wl)
|
||||||
|
{
|
||||||
|
NG_IGNORE(wl);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SMPprint(SMPmatrix *n1, char *n2)
|
SMPprint(SMPmatrix *n1, char *n2)
|
||||||
{
|
{
|
||||||
|
|
@ -428,6 +434,12 @@ EVTswitch_plot(CKTcircuit* ckt, const char* plottypename)
|
||||||
return 1;
|
return 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void
|
||||||
|
EVTsave(wordlist* wl)
|
||||||
|
{
|
||||||
|
NG_IGNORE(wl);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
load_opus(const char *name)
|
load_opus(const char *name)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@ struct plot *plot_cur = NULL;
|
||||||
int cp_maxhistlength = 0;
|
int cp_maxhistlength = 0;
|
||||||
bool cp_no_histsubst = FALSE;
|
bool cp_no_histsubst = FALSE;
|
||||||
struct compat newcompat;
|
struct compat newcompat;
|
||||||
|
bool cx_degrees = FALSE;
|
||||||
|
|
||||||
char *cp_program = "sconvert";
|
char *cp_program = "sconvert";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue