aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-05-01 17:06:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-05-01 17:06:09 -0300
commit792ffaccf2b28880f19564f6be63ecad03d4863e (patch)
tree30e8714a5a0b45d16e4b0bc2f086cd5e8d929368 /luaconf.h
parent57cdb60429c77078d896ab789c032d87fb58449d (diff)
downloadlua-792ffaccf2b28880f19564f6be63ecad03d4863e.tar.gz
lua-792ffaccf2b28880f19564f6be63ecad03d4863e.tar.bz2
lua-792ffaccf2b28880f19564f6be63ecad03d4863e.zip
detail (macro should "use" all its arguments)
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 407159ae..fa1fcd4d 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.253 2015/06/24 18:23:57 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.254 2015/10/21 18:17:40 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*/
@@ -612,7 +612,7 @@
612** provide its own implementation. 612** provide its own implementation.
613*/ 613*/
614#if !defined(LUA_USE_C89) 614#if !defined(LUA_USE_C89)
615#define lua_number2strx(L,b,sz,f,n) l_sprintf(b,sz,f,n) 615#define lua_number2strx(L,b,sz,f,n) ((void)L, l_sprintf(b,sz,f,n))
616#endif 616#endif
617 617
618 618