diff options
-rw-r--r-- | luaconf.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.132 2010/01/21 16:49:21 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.133 2010/02/18 19:18:41 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -200,7 +200,8 @@ | |||
200 | @@ luai_writestringerror defines how to print error messages. | 200 | @@ luai_writestringerror defines how to print error messages. |
201 | ** (A format string with one argument is enough for Lua...) | 201 | ** (A format string with one argument is enough for Lua...) |
202 | */ | 202 | */ |
203 | #define luai_writestringerror(s,p) fprintf(stderr, (s), (p)) | 203 | #define luai_writestringerror(s,p) \ |
204 | (fprintf(stderr, (s), (p)), fflush(stderr)) | ||
204 | 205 | ||
205 | 206 | ||
206 | 207 | ||