diff options
author | Mike Pall <mike> | 2022-06-23 09:10:43 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2022-06-23 09:10:43 +0200 |
commit | 4c2441c16ce3c4e312aaefecc6d40c4fe21de97c (patch) | |
tree | 0ee5ad7a3246f9a620265de9c6998308cb44a09b /doc/faq.html | |
parent | 0065cff7e0222c234b75a71e72b8883df5d000c2 (diff) | |
parent | 2e98c3d0644fc0c265844908f43b7e4526dd819c (diff) | |
download | luajit-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.html | 6 |
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. | |||
120 | Consider testing your application with older versions, too.<br> | 120 | Consider testing your application with older versions, too.<br> |
121 | 121 | ||
122 | Similarly, the Borland/Delphi runtime modifies the FPU control word and | 122 | Similarly, the Borland/Delphi runtime modifies the FPU control word and |
123 | enables FP exceptions. Of course this violates the Windows ABI, too. | 123 | enables FP exceptions. Of course, this violates the Windows ABI, too. |
124 | Please check the Delphi docs for the Set8087CW method.</dd> | 124 | Please 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> | |||
130 | ignored by compiled code. If your program is running in a tight loop | 130 | ignored by compiled code. If your program is running in a tight loop |
131 | and never falls back to the interpreter, the debug hook never runs and | 131 | and never falls back to the interpreter, the debug hook never runs and |
132 | can't throw the "interrupted!" error.<br> | 132 | can't throw the "interrupted!" error.<br> |
133 | You have to press Ctrl-C twice to get stop your program. That's similar | 133 | You have to press Ctrl-C twice to stop your program. That's similar |
134 | to when it's stuck running inside a C function under the Lua interpreter.</dd> | 134 | to 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> |
153 | Maybe for an extremly restricted subset of Lua and if you relentlessly | 153 | Maybe for an extremely restricted subset of Lua and if you relentlessly |
154 | scrutinize every single interface function you offer to the untrusted code.<br> | 154 | scrutinize every single interface function you offer to the untrusted code.<br> |
155 | 155 | ||
156 | Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), | 156 | Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), |