commit 915a9a912c3f59a0f24c4e59506933922aa0b17c
parent ae0a5e2142c943329a2e8d33f8d9964c9d090249
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 3 Mar 2010 15:52:38 -0300
just in case, better to flush error messages
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/luaconf.h b/luaconf.h
@@ -1,5 +1,5 @@
/*
-** $Id: luaconf.h,v 1.132 2010/01/21 16:49:21 roberto Exp roberto $
+** $Id: luaconf.h,v 1.133 2010/02/18 19:18:41 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -200,7 +200,8 @@
@@ luai_writestringerror defines how to print error messages.
** (A format string with one argument is enough for Lua...)
*/
-#define luai_writestringerror(s,p) fprintf(stderr, (s), (p))
+#define luai_writestringerror(s,p) \
+ (fprintf(stderr, (s), (p)), fflush(stderr))