aboutsummaryrefslogtreecommitdiff
path: root/doc/faq.html
diff options
context:
space:
mode:
authorMike Pall <mike>2022-06-23 09:10:43 +0200
committerMike Pall <mike>2022-06-23 09:10:43 +0200
commit4c2441c16ce3c4e312aaefecc6d40c4fe21de97c (patch)
tree0ee5ad7a3246f9a620265de9c6998308cb44a09b /doc/faq.html
parent0065cff7e0222c234b75a71e72b8883df5d000c2 (diff)
parent2e98c3d0644fc0c265844908f43b7e4526dd819c (diff)
downloadluajit-4c2441c16ce3c4e312aaefecc6d40c4fe21de97c.tar.gz
luajit-4c2441c16ce3c4e312aaefecc6d40c4fe21de97c.tar.bz2
luajit-4c2441c16ce3c4e312aaefecc6d40c4fe21de97c.zip
Merge branch 'master' into v2.1
Diffstat (limited to 'doc/faq.html')
-rw-r--r--doc/faq.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/faq.html b/doc/faq.html
index b826bd00..9effeb16 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -120,7 +120,7 @@ Direct3D version 10 or higher do not show this behavior anymore.
120Consider testing your application with older versions, too.<br> 120Consider testing your application with older versions, too.<br>
121 121
122Similarly, the Borland/Delphi runtime modifies the FPU control word and 122Similarly, the Borland/Delphi runtime modifies the FPU control word and
123enables FP exceptions. Of course this violates the Windows ABI, too. 123enables FP exceptions. Of course, this violates the Windows ABI, too.
124Please check the Delphi docs for the Set8087CW method.</dd> 124Please check the Delphi docs for the Set8087CW method.</dd>
125</dl> 125</dl>
126 126
@@ -130,7 +130,7 @@ Please check the Delphi docs for the Set8087CW method.</dd>
130ignored by compiled code. If your program is running in a tight loop 130ignored by compiled code. If your program is running in a tight loop
131and never falls back to the interpreter, the debug hook never runs and 131and never falls back to the interpreter, the debug hook never runs and
132can't throw the "interrupted!" error.<br> 132can't throw the "interrupted!" error.<br>
133You have to press Ctrl-C twice to get stop your program. That's similar 133You have to press Ctrl-C twice to stop your program. That's similar
134to when it's stuck running inside a C function under the Lua interpreter.</dd> 134to when it's stuck running inside a C function under the Lua interpreter.</dd>
135</dl> 135</dl>
136 136
@@ -150,7 +150,7 @@ so it doesn't rely on the key order. Or sort the table keys, if you must.</dd>
150<dl id="sandbox"> 150<dl id="sandbox">
151<dt>Q: Can Lua code be safely sandboxed?</dt> 151<dt>Q: Can Lua code be safely sandboxed?</dt>
152<dd> 152<dd>
153Maybe for an extremly restricted subset of Lua and if you relentlessly 153Maybe for an extremely restricted subset of Lua and if you relentlessly
154scrutinize every single interface function you offer to the untrusted code.<br> 154scrutinize every single interface function you offer to the untrusted code.<br>
155 155
156Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), 156Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks),