From b6780ee41b1f5c120601a72b12d81e3ce71a8971 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 15 Jun 2018 12:49:28 -0300 Subject: [PATCH] detail (removed unused definition for 'LUA_QS') --- luaconf.h | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/luaconf.h b/luaconf.h index 1f9d5f3b..64565066 100644 --- a/luaconf.h +++ b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.267 2018/03/09 14:56:02 roberto Exp roberto $ +** $Id: luaconf.h,v 1.268 2018/04/02 13:58:33 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -699,21 +699,13 @@ /* @@ LUAI_MAXALIGN defines fields that, when used in a union, ensure -** "maximum" alignment for the other items in that union. +** maximum alignment for the other items in that union. */ #define LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l /* }================================================================== */ -/* -@@ LUA_QL describes how error messages quote program elements. -** Lua does not use these macros anymore; they are here for -** compatibility only. -*/ -#define LUA_QL(x) "'" x "'" -#define LUA_QS LUA_QL("%s") -