Add '\f' to characters to be replace by '+'

during the syntax check of an netlist input file.
This commit is contained in:
Holger Vogt 2021-06-21 13:49:53 +02:00
parent c061747f19
commit 52b5e218c7
1 changed files with 1 additions and 1 deletions

View File

@ -9037,7 +9037,7 @@ static void inp_check_syntax(struct card *deck)
if (*cut_line == '*' || *cut_line == '\0') if (*cut_line == '*' || *cut_line == '\0')
continue; continue;
// check for unusable leading characters and change them to '*' // check for unusable leading characters and change them to '*'
if (strchr("=[]?()&%$\"!:,", *cut_line)) { if (strchr("=[]?()&%$\"!:,\f", *cut_line)) {
if (ft_stricterror) { if (ft_stricterror) {
fprintf(stderr, "Error: '%c' is not allowed as first character in line %s.\n", *cut_line, cut_line); fprintf(stderr, "Error: '%c' is not allowed as first character in line %s.\n", *cut_line, cut_line);
controlled_exit(EXIT_BAD); controlled_exit(EXIT_BAD);