diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-15 12:49:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-15 12:49:28 -0300 |
commit | b6780ee41b1f5c120601a72b12d81e3ce71a8971 (patch) | |
tree | 9bde21f9c8d5ad6f63c14793a372a3dcd96b8074 /luaconf.h | |
parent | 2c107e13a8234ea16f0331fe0ff53b784af2bdc1 (diff) | |
download | lua-b6780ee41b1f5c120601a72b12d81e3ce71a8971.tar.gz lua-b6780ee41b1f5c120601a72b12d81e3ce71a8971.tar.bz2 lua-b6780ee41b1f5c120601a72b12d81e3ce71a8971.zip |
detail (removed unused definition for 'LUA_QS')
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.267 2018/03/09 14:56:02 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.268 2018/04/02 13:58:33 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 | */ |
@@ -699,21 +699,13 @@ | |||
699 | 699 | ||
700 | /* | 700 | /* |
701 | @@ LUAI_MAXALIGN defines fields that, when used in a union, ensure | 701 | @@ LUAI_MAXALIGN defines fields that, when used in a union, ensure |
702 | ** "maximum" alignment for the other items in that union. | 702 | ** maximum alignment for the other items in that union. |
703 | */ | 703 | */ |
704 | #define LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l | 704 | #define LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l |
705 | 705 | ||
706 | /* }================================================================== */ | 706 | /* }================================================================== */ |
707 | 707 | ||
708 | 708 | ||
709 | /* | ||
710 | @@ LUA_QL describes how error messages quote program elements. | ||
711 | ** Lua does not use these macros anymore; they are here for | ||
712 | ** compatibility only. | ||
713 | */ | ||
714 | #define LUA_QL(x) "'" x "'" | ||
715 | #define LUA_QS LUA_QL("%s") | ||
716 | |||
717 | 709 | ||
718 | 710 | ||
719 | 711 | ||