aboutsummaryrefslogtreecommitdiff
path: root/manual/2html
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-02-15 11:17:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-02-15 11:17:39 -0300
commit165389b27bc54e7c5214276db177e3ef75226f18 (patch)
treef6ce6e7bff04ff6cbe735ee68d64290cc04c04bf /manual/2html
parentc8121ce34b39c6fd31899f4da91e26063c8af54f (diff)
downloadlua-165389b27bc54e7c5214276db177e3ef75226f18.tar.gz
lua-165389b27bc54e7c5214276db177e3ef75226f18.tar.bz2
lua-165389b27bc54e7c5214276db177e3ef75226f18.zip
New interface to function 'luaL_openselectedlibs'
Instead of preloading all non-loaded libraries, there is another mask to select which libraries to preload.
Diffstat (limited to 'manual/2html')
-rwxr-xr-xmanual/2html2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/2html b/manual/2html
index 43fd8913..bada6ee0 100755
--- a/manual/2html
+++ b/manual/2html
@@ -358,7 +358,7 @@ item = function (s)
358 local t, p = string.match(s, "^([^\n|]+)|()") 358 local t, p = string.match(s, "^([^\n|]+)|()")
359 if t then 359 if t then
360 s = string.sub(s, p) 360 s = string.sub(s, p)
361 s = Tag.b(t..": ") .. s 361 s = Tag.b(t) ..": " .. s
362 end 362 end
363 return Tag.li(fixpara(s)) 363 return Tag.li(fixpara(s))
364 end, 364 end,