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);
|
||||
}
|
||||
|
||||
void
|
||||
com_optran(wordlist *wl)
|
||||
{
|
||||
NG_IGNORE(wl);
|
||||
}
|
||||
|
||||
void
|
||||
SMPprint(SMPmatrix *n1, char *n2)
|
||||
{
|
||||
|
|
@ -428,6 +434,12 @@ EVTswitch_plot(CKTcircuit* ckt, const char* plottypename)
|
|||
return 1;
|
||||
};
|
||||
|
||||
void
|
||||
EVTsave(wordlist* wl)
|
||||
{
|
||||
NG_IGNORE(wl);
|
||||
}
|
||||
|
||||
int
|
||||
load_opus(const char *name)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ struct plot *plot_cur = NULL;
|
|||
int cp_maxhistlength = 0;
|
||||
bool cp_no_histsubst = FALSE;
|
||||
struct compat newcompat;
|
||||
bool cx_degrees = FALSE;
|
||||
|
||||
char *cp_program = "sconvert";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue