summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-02-05 14:53:34 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-02-05 14:53:34 -0200
commit0edcdf49c00b70986f3efc12ceae912db2361d67 (patch)
tree6517f2c7e407938e2879c188c18792838c72d9be
parentb7dfd18612db1450ee3f8d1ebe2d0b6a3f91ec04 (diff)
downloadlua-0edcdf49c00b70986f3efc12ceae912db2361d67.tar.gz
lua-0edcdf49c00b70986f3efc12ceae912db2361d67.tar.bz2
lua-0edcdf49c00b70986f3efc12ceae912db2361d67.zip
added comments documenting LUA_NOCVTN2S/LUA_NOCVTS2N
-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.