lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> _G['?'] was simply a way of showing, the syntax filter makes calls to  
> a '?' global function (addressable as _G['?'] since _G has the  
> globals).

There is no need to play games with _G: you can simply return <name>,"?".
That's one of the beauties of token filtering: identifiers can be anything,
even ones rejected by the lexer!
--lhf