diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-02-15 11:17:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-02-15 11:17:39 -0300 |
commit | 165389b27bc54e7c5214276db177e3ef75226f18 (patch) | |
tree | f6ce6e7bff04ff6cbe735ee68d64290cc04c04bf /manual/2html | |
parent | c8121ce34b39c6fd31899f4da91e26063c8af54f (diff) | |
download | lua-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-x | manual/2html | 2 |
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, |