Don't quote the subcircuit name in an X line

This commit is contained in:
Holger Vogt 2024-12-27 11:12:31 +01:00
parent d549b882df
commit ffde17441b
1 changed files with 4 additions and 4 deletions

View File

@ -8254,10 +8254,10 @@ static void inp_quote_params(struct card *c, struct card *end_c,
if (num_terminals <= 0) if (num_terminals <= 0)
continue; continue;
/* There are devices that should not get quotes around tokens /* There are devices that should not get quotes around token directly
following after the terminals. These may be model names or control following the terminals. These may be model names, control voltages
voltages. See bug 384 or Skywater issue 327 */ or subckt names. See bugs 384, 730 or Skywater issue 327 */
if (strchr("fhmouydqjzsw", *curr_line)) if (strchr("fhmouydqjzswx", *curr_line))
num_terminals++; num_terminals++;
for (i = 0; i < num_params; i++) { for (i = 0; i < num_params; i++) {