do not reverse "options", just com_options,

and note:
  "options" comes first, so com_options eventually overrides "options"
This commit is contained in:
rlar 2016-09-03 11:41:46 +02:00
parent f9031559b7
commit 55dbdf35e8
1 changed files with 1 additions and 2 deletions

View File

@ -717,8 +717,7 @@ inp_spsource(FILE *fp, bool comfile, char *filename, bool intfile)
options (comfile == FALSE, filled in from circuit with .OPTIONS)
into options, thus keeping com_options,
options is loaded into circuit and freed when circuit is removed */
options = line_nconc(options, inp_deckcopy(com_options));
options = line_reverse(options);
options = line_nconc(options, line_reverse(inp_deckcopy(com_options)));
/* prepare parse trees from 'temper' expressions */
if (expr_w_temper)