Command 'listing r': No extra formatting, truncation etc.

of netlist lines when printing to file or console.
This commit is contained in:
Holger Vogt 2023-03-31 11:16:26 +02:00
parent 5a27a29713
commit 48ddbb4819
1 changed files with 3 additions and 3 deletions

View File

@ -250,7 +250,7 @@ inp_list(FILE *file, struct card *deck, struct card *extras, int type)
Xprintf(file, "%s\n", here->error); Xprintf(file, "%s\n", here->error);
} }
else if ((*here->line != '*') && (type == LS_RUNNABLE)) { else if ((*here->line != '*') && (type == LS_RUNNABLE)) {
Xprintf(file, "%s\n", upper(here->line)); Xprintf(file, "%s\n", here->line);
if (here->error) if (here->error)
Xprintf(file, "%s\n", here->error); Xprintf(file, "%s\n", here->error);
} }