Skip to content

Commit

Permalink
Issue #8556 Removed bracket '(' in HTML an XML output
Browse files Browse the repository at this point in the history
The opening bracket was "forgotten" when the sharp count > 0 (in this case 1). the closing bracket was later on added to the name so the opening bracket is also be added to the name.
  • Loading branch information
albert-github committed May 18, 2021
1 parent e6f5444 commit 0e5b8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scanner.l
Expand Up @@ -1955,7 +1955,7 @@ NONLopt [^\n]*
//printf("Found %s\n",qPrint(yyextra->current->name));
BEGIN( ReadFuncArgType ) ;
}
else if (yyextra->sharpCount<=0)
else
{
yyextra->current->name+="(";
yyextra->roundCount++;
Expand Down

0 comments on commit 0e5b8b4

Please sign in to comment.