aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 25571bd7..b1ec3f9c 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.242 2015/01/16 17:26:56 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.243 2015/02/04 12:52:57 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*/
@@ -654,6 +654,24 @@
654 654
655/* 655/*
656** {================================================================== 656** {==================================================================
657** Language Variations
658** =====================================================================
659*/
660
661/*
662@@ LUA_NOCVTN2S/LUA_NOCVTS2N control how Lua performs some
663** coercions. Define LUA_NOCVTN2S to turn off automatic coercion from
664** numbers to strings. Define LUA_NOCVTS2N to turn off automatic
665** coercion from strings to numbers.
666*/
667/* #define LUA_NOCVTN2S */
668/* #define LUA_NOCVTS2N */
669
670/* }================================================================== */
671
672
673/*
674** {==================================================================
657** Macros that affect the API and must be stable (that is, must be the 675** Macros that affect the API and must be stable (that is, must be the
658** same when you compile Lua and when you compile code that links to 676** same when you compile Lua and when you compile code that links to
659** Lua). You probably do not want/need to change them. 677** Lua). You probably do not want/need to change them.