aboutsummaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-04-01 13:55:44 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-04-01 13:55:44 -0300
commitf3cfd5bf2b11ba207c71344243892645157900b7 (patch)
tree87e26a041ebbd9a91fa5862a3e312f3159b6a132 /manual
parent8426d9b4d4df1da3c5b2d759e509ae1c50a86667 (diff)
downloadlua-f3cfd5bf2b11ba207c71344243892645157900b7.tar.gz
lua-f3cfd5bf2b11ba207c71344243892645157900b7.tar.bz2
lua-f3cfd5bf2b11ba207c71344243892645157900b7.zip
Details
Comments + manual + identation + asserts about stack limits that were not allowing the use of the full stack
Diffstat (limited to 'manual')
-rw-r--r--manual/manual.of4
1 files changed, 3 insertions, 1 deletions
diff --git a/manual/manual.of b/manual/manual.of
index 15f207fa..bd648c6c 100644
--- a/manual/manual.of
+++ b/manual/manual.of
@@ -3981,6 +3981,7 @@ Also @N{returns 0} if any of the indices are not valid.
3981 3981
3982Similar to @Lid{lua_gettable}, but does a raw access 3982Similar to @Lid{lua_gettable}, but does a raw access
3983(i.e., without metamethods). 3983(i.e., without metamethods).
3984The value at @id{index} must be a table.
3984 3985
3985} 3986}
3986 3987
@@ -4027,6 +4028,7 @@ For other values, this call @N{returns 0}.
4027 4028
4028Similar to @Lid{lua_settable}, but does a raw assignment 4029Similar to @Lid{lua_settable}, but does a raw assignment
4029(i.e., without metamethods). 4030(i.e., without metamethods).
4031The value at @id{index} must be a table.
4030 4032
4031} 4033}
4032 4034
@@ -7280,7 +7282,7 @@ according to the format string @id{fmt} @see{pack}.
7280 7282
7281@LibEntry{string.packsize (fmt)| 7283@LibEntry{string.packsize (fmt)|
7282 7284
7283Returns the size of a string resulting from @Lid{string.pack} 7285Returns the length of a string resulting from @Lid{string.pack}
7284with the given format. 7286with the given format.
7285The format string cannot have the variable-length options 7287The format string cannot have the variable-length options
7286@Char{s} or @Char{z} @see{pack}. 7288@Char{s} or @Char{z} @see{pack}.