Hi,
another one I spotted today:
#include <xml++.h>
#include <xml-stuff.h>
doesn't get parsed correctly. This is annoying because especially "+"
and "-" are common elements of filenames, at least in the (my) C++
world.
So I changed filename-prefix from
filename-prefix : symbol
| FLOAT ( "float" )
;
to
filename-prefix : symbol filename-prefix
( (concat $1 (car $2)) )
| PLUS filename-prefix
( (concat $1 (car $2)) )
| MINUS filename-prefix
( (concat $1 (car $2)) )
| symbol
| FLOAT
( "float" )
| EMPTY
( "" )
;
which might be ok or not. Maybe some guru will do the real thing.
Regards, Thomas.
--
Thomas Maier <T.Maier@...>
|