aboutsummaryrefslogtreecommitdiff
path: root/doc/faq.html
diff options
context:
space:
mode:
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 36b2eafc..0b4b2df0 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -116,7 +116,7 @@ Direct3D version 10 or higher do not show this behavior anymore.
116Consider testing your application with older versions, too.<br> 116Consider testing your application with older versions, too.<br>
117 117
118Similarly, the Borland/Delphi runtime modifies the FPU control word and 118Similarly, the Borland/Delphi runtime modifies the FPU control word and
119enables FP exceptions. Of course this violates the Windows ABI, too. 119enables FP exceptions. Of course, this violates the Windows ABI, too.
120Please check the Delphi docs for the Set8087CW method.</dd> 120Please check the Delphi docs for the Set8087CW method.</dd>
121</dl> 121</dl>
122 122
@@ -126,7 +126,7 @@ Please check the Delphi docs for the Set8087CW method.</dd>
126ignored by compiled code. If your program is running in a tight loop 126ignored by compiled code. If your program is running in a tight loop
127and never falls back to the interpreter, the debug hook never runs and 127and never falls back to the interpreter, the debug hook never runs and
128can't throw the "interrupted!" error.<br> 128can't throw the "interrupted!" error.<br>
129You have to press Ctrl-C twice to get stop your program. That's similar 129You have to press Ctrl-C twice to stop your program. That's similar
130to when it's stuck running inside a C function under the Lua interpreter.</dd> 130to when it's stuck running inside a C function under the Lua interpreter.</dd>
131</dl> 131</dl>
132 132
@@ -146,7 +146,7 @@ so it doesn't rely on the key order. Or sort the table keys, if you must.</dd>
146<dl id="sandbox"> 146<dl id="sandbox">
147<dt>Q: Can Lua code be safely sandboxed?</dt> 147<dt>Q: Can Lua code be safely sandboxed?</dt>
148<dd> 148<dd>
149Maybe for an extremly restricted subset of Lua and if you relentlessly 149Maybe for an extremely restricted subset of Lua and if you relentlessly
150scrutinize every single interface function you offer to the untrusted code.<br> 150scrutinize every single interface function you offer to the untrusted code.<br>
151 151
152Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), 152Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks),