Displaying 1 result from an estimated 1 matches for "xml2xhtml".
2020 Sep 23
1
[Bug 1469] New: Bison reported unused tokens in `nft`
...a potential dead code issue.
I do not claim to know the future of these dead code but only to point them out
in the case that someone forgot them.
I ran the `bison` analyzer as followed:
```bash
cd nftables/src
bison --update parser_bison.y
bison -x parser_bison.y
xsltproc /usr/share/bison/xslt/xml2xhtml.xsl parser_bison.xml >
parser_bison.html
firefox parser_bison.html
```
And got the following report under `Reduction` section:
```console
Terminals unused in grammar
"junk"
"!"
"nanosecond"
"microsecond"
"millisecond"
```
I was...