[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: print and lua conf
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 17 Feb 2009 00:39:18 -0300
> I was wondering what possible issues and solutions might be to change
> the FILE pointer Lua uses for functions like print and error at the
> configuration or runtime startup level might be.
Lua 5.2 will provide a macro in luaconf.h for outputting strings via print.
The default will be this:
/*
@@ luai_writestring defines how 'print' prints its results.
** CHANGE it if your system does not have a useful stdout.
*/
#define luai_writestring(s,l) fwrite((s), sizeof(char), (l), stdout)