summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-11-21 15:26:16 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-11-21 15:26:16 -0200
commit7ea44b56a883857dc7ba28bd99406491034e254c (patch)
tree01ed420e03b48f7447214215677d2e3a699741f6
parent63048dc9b78c39e655ec74270a4fe4647cccb1c9 (diff)
downloadlua-7ea44b56a883857dc7ba28bd99406491034e254c.tar.gz
lua-7ea44b56a883857dc7ba28bd99406491034e254c.tar.bz2
lua-7ea44b56a883857dc7ba28bd99406491034e254c.zip
details (typos in comments)v5.2.3
-rw-r--r--luaconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/luaconf.h b/luaconf.h
index df802c95..33cd2139 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.176 2013/03/16 21:10:18 roberto Exp $ 2** $Id: luaconf.h,v 1.176.1.1 2013/04/12 18:48:47 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*/
@@ -326,7 +326,7 @@
326 326
327 327
328/* 328/*
329@@ LUA_INT32 is an signed integer with exactly 32 bits. 329@@ LUA_INT32 is a signed integer with exactly 32 bits.
330@@ LUAI_UMEM is an unsigned integer big enough to count the total 330@@ LUAI_UMEM is an unsigned integer big enough to count the total
331@* memory used by Lua. 331@* memory used by Lua.
332@@ LUAI_MEM is a signed integer big enough to count the total memory 332@@ LUAI_MEM is a signed integer big enough to count the total memory
@@ -350,7 +350,7 @@
350/* 350/*
351@@ LUAI_MAXSTACK limits the size of the Lua stack. 351@@ LUAI_MAXSTACK limits the size of the Lua stack.
352** CHANGE it if you need a different limit. This limit is arbitrary; 352** CHANGE it if you need a different limit. This limit is arbitrary;
353** its only purpose is to stop Lua to consume unlimited stack 353** its only purpose is to stop Lua from consuming unlimited stack
354** space (and to reserve some numbers for pseudo-indices). 354** space (and to reserve some numbers for pseudo-indices).
355*/ 355*/
356#if LUAI_BITSINT >= 32 356#if LUAI_BITSINT >= 32