diff --git a/src/frontend/mw_coms.c b/src/frontend/mw_coms.c index 9b6a7bdc5..aebf6cf18 100644 --- a/src/frontend/mw_coms.c +++ b/src/frontend/mw_coms.c @@ -31,7 +31,8 @@ com_removecirc(wordlist *wl) NG_IGNORE(wl); if (!ft_curckt) { - fprintf(cp_err, "Error: there is no circuit loaded.\n"); + fprintf(cp_err, "Warning: there is no circuit loaded.\n"); + fprintf(cp_err, " Command 'remcirc' is ignored.\n"); return; } diff --git a/src/frontend/runcoms2.c b/src/frontend/runcoms2.c index 6d69717e9..ac6c9dead 100644 --- a/src/frontend/runcoms2.c +++ b/src/frontend/runcoms2.c @@ -174,7 +174,8 @@ com_rset(wordlist *wl) NG_IGNORE(wl); if (ft_curckt == NULL) { - fprintf(cp_err, "Error: there is no circuit loaded.\n"); + fprintf(cp_err, "Warning: there is no circuit loaded.\n"); + fprintf(cp_err, " Command 'reset' is ignored.\n"); return; } com_remcirc(NULL); @@ -193,7 +194,8 @@ com_remcirc(wordlist *wl) NG_IGNORE(wl); if (ft_curckt == NULL) { - fprintf(cp_err, "Error: there is no circuit loaded.\n"); + fprintf(cp_err, "Warning: there is no circuit loaded.\n"); + fprintf(cp_err, " Command 'remcirc' is ignored.\n"); return; } diff --git a/src/frontend/spiceif.c b/src/frontend/spiceif.c index 737bce232..075a51034 100644 --- a/src/frontend/spiceif.c +++ b/src/frontend/spiceif.c @@ -1625,10 +1625,12 @@ void com_snsave(wordlist *wl) TSKtask *task; if (!ft_curckt) { - fprintf(cp_err, "Error: there is no circuit loaded.\n"); + fprintf(cp_err, "Warning: there is no circuit loaded.\n"); + fprintf(cp_err, " Command 'snsave' is ignored.\n"); return; } else if (!ft_curckt->ci_ckt) { /* Set noparse? */ - fprintf(cp_err, "Error: circuit not parsed.\n"); + fprintf(cp_err, "Warning: circuit not parsed.\n"); + fprintf(cp_err, " Command 'snsave' is ignored.\n"); return; } @@ -1647,7 +1649,7 @@ void com_snsave(wordlist *wl) task = ft_curckt->ci_curTask; if (task->jobs->JOBtype != 4) { - fprintf(cp_err, "Only saving of tran analysis is implemented\n"); + fprintf(cp_err, "Warning: Only saving of tran analysis is implemented\n"); return; }