Skip the title line when re-sorting parameters

and removing .meas statement.
This commit is contained in:
Holger Vogt 2023-06-09 14:44:40 +02:00
parent bf1dfa0127
commit 72496da4c9
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ inp_spsource(FILE *fp, bool comfile, char *filename, bool intfile)
ft_curckt->ci_meas = NULL;
}
for (dd = deck; dd; dd = dd->nextcard) {
for (dd = deck->nextcard; dd; dd = dd->nextcard) { /* skip title line */
/* all parameter lines should be sequentially ordered and placed at
beginning of deck */
if (ciprefix(".para", dd->line)) {