diff options
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 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. | |||
116 | Consider testing your application with older versions, too.<br> | 116 | Consider testing your application with older versions, too.<br> |
117 | 117 | ||
118 | Similarly, the Borland/Delphi runtime modifies the FPU control word and | 118 | Similarly, the Borland/Delphi runtime modifies the FPU control word and |
119 | enables FP exceptions. Of course this violates the Windows ABI, too. | 119 | enables FP exceptions. Of course, this violates the Windows ABI, too. |
120 | Please check the Delphi docs for the Set8087CW method.</dd> | 120 | Please 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> | |||
126 | ignored by compiled code. If your program is running in a tight loop | 126 | ignored by compiled code. If your program is running in a tight loop |
127 | and never falls back to the interpreter, the debug hook never runs and | 127 | and never falls back to the interpreter, the debug hook never runs and |
128 | can't throw the "interrupted!" error.<br> | 128 | can't throw the "interrupted!" error.<br> |
129 | You have to press Ctrl-C twice to get stop your program. That's similar | 129 | You have to press Ctrl-C twice to stop your program. That's similar |
130 | to when it's stuck running inside a C function under the Lua interpreter.</dd> | 130 | to 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> |
149 | Maybe for an extremly restricted subset of Lua and if you relentlessly | 149 | Maybe for an extremely restricted subset of Lua and if you relentlessly |
150 | scrutinize every single interface function you offer to the untrusted code.<br> | 150 | scrutinize every single interface function you offer to the untrusted code.<br> |
151 | 151 | ||
152 | Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), | 152 | Although Lua provides some sandboxing functionality (<tt>setfenv()</tt>, hooks), |