do_meas only if .meas cards are available

This commit is contained in:
h_vogt 2009-12-12 11:49:05 +00:00
parent b9512bbed1
commit f72545d4d0
1 changed files with 2 additions and 1 deletions

View File

@ -347,7 +347,8 @@ dosim(
}
/* execute the .measure statements */
if ( !err && ft_curckt->ci_last_an) do_measure( ft_curckt->ci_last_an, FALSE );
if ( !err && ft_curckt->ci_last_an && ft_curckt->ci_meas)
do_measure( ft_curckt->ci_last_an, FALSE );
return err;
}