diff options
Diffstat (limited to '')
-rw-r--r-- | doc/faq.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/faq.html b/doc/faq.html index 5c4ce533..acc47bae 100644 --- a/doc/faq.html +++ b/doc/faq.html | |||
@@ -61,16 +61,16 @@ dd { margin-left: 1.5em; } | |||
61 | <dt>Q: Where can I learn more about LuaJIT and Lua?</dt> | 61 | <dt>Q: Where can I learn more about LuaJIT and Lua?</dt> |
62 | <dd> | 62 | <dd> |
63 | <ul style="padding: 0;"> | 63 | <ul style="padding: 0;"> |
64 | <li>The <a href="https://luajit.org/list.html">LuaJIT mailing list</a> focuses on topics | 64 | <li>The <a href="https://luajit.org/list.html"><span class="ext">»</span> LuaJIT mailing list</a> focuses on topics |
65 | related to LuaJIT.</li> | 65 | related to LuaJIT.</li> |
66 | <li>The <a href="http://wiki.luajit.org/"><span class="ext">»</span> LuaJIT wiki</a> gathers community | 66 | <li>The <a href="http://wiki.luajit.org/"><span class="ext">»</span> LuaJIT wiki</a> gathers community |
67 | resources about LuaJIT.</li> | 67 | resources about LuaJIT.</li> |
68 | <li>News about Lua itself can be found at the | 68 | <li>News about Lua itself can be found at the |
69 | <a href="https://www.lua.org/lua-l.html">Lua mailing list</a>. | 69 | <a href="https://www.lua.org/lua-l.html"><span class="ext">»</span> Lua mailing list</a>. |
70 | The mailing list archives are worth checking out for older postings | 70 | The mailing list archives are worth checking out for older postings |
71 | about LuaJIT.</li> | 71 | about LuaJIT.</li> |
72 | <li>The <a href="https://lua.org">main Lua.org site</a> has complete | 72 | <li>The <a href="https://lua.org"><span class="ext">»</span> main Lua.org site</a> has complete |
73 | <a href="https://www.lua.org/docs.html">documentation</a> of the language | 73 | <a href="https://www.lua.org/docs.html"><span class="ext">»</span> documentation</a> of the language |
74 | and links to books and papers about Lua.</li> | 74 | and links to books and papers about Lua.</li> |
75 | <li>The community-managed <a href="http://lua-users.org/wiki/"><span class="ext">»</span> Lua Wiki</a> | 75 | <li>The community-managed <a href="http://lua-users.org/wiki/"><span class="ext">»</span> Lua Wiki</a> |
76 | has information about diverse topics.</li> | 76 | has information about diverse topics.</li> |
@@ -83,11 +83,11 @@ has information about diverse topics.</li> | |||
83 | I'm planning to write more documentation about the internals of LuaJIT. | 83 | I'm planning to write more documentation about the internals of LuaJIT. |
84 | In the meantime, please use the following Google Scholar searches | 84 | In the meantime, please use the following Google Scholar searches |
85 | to find relevant papers:<br> | 85 | to find relevant papers:<br> |
86 | Search for: <a href="https://scholar.google.com/scholar?q=Trace+Compiler">Trace Compiler</a><br> | 86 | Search for: <a href="https://scholar.google.com/scholar?q=Trace+Compiler"><span class="ext">»</span> Trace Compiler</a><br> |
87 | Search for: <a href="https://scholar.google.com/scholar?q=JIT+Compiler">JIT Compiler</a><br> | 87 | Search for: <a href="https://scholar.google.com/scholar?q=JIT+Compiler"><span class="ext">»</span> JIT Compiler</a><br> |
88 | Search for: <a href="https://scholar.google.com/scholar?q=Dynamic+Language+Optimizations">Dynamic Language Optimizations</a><br> | 88 | Search for: <a href="https://scholar.google.com/scholar?q=Dynamic+Language+Optimizations"><span class="ext">»</span> Dynamic Language Optimizations</a><br> |
89 | Search for: <a href="https://scholar.google.com/scholar?q=SSA+Form">SSA Form</a><br> | 89 | Search for: <a href="https://scholar.google.com/scholar?q=SSA+Form"><span class="ext">»</span> SSA Form</a><br> |
90 | Search for: <a href="https://scholar.google.com/scholar?q=Linear+Scan+Register+Allocation">Linear Scan Register Allocation</a><br> | 90 | Search for: <a href="https://scholar.google.com/scholar?q=Linear+Scan+Register+Allocation"><span class="ext">»</span> Linear Scan Register Allocation</a><br> |
91 | Here is a list of the <a href="http://lua-users.org/lists/lua-l/2009-11/msg00089.html"><span class="ext">»</span> innovative features in LuaJIT</a>.<br> | 91 | Here is a list of the <a href="http://lua-users.org/lists/lua-l/2009-11/msg00089.html"><span class="ext">»</span> innovative features in LuaJIT</a>.<br> |
92 | And, you know, reading the source is of course the only way to enlightenment. :-) | 92 | And, you know, reading the source is of course the only way to enlightenment. :-) |
93 | </dd> | 93 | </dd> |
@@ -99,7 +99,7 @@ Q: My vararg functions fail after switching to LuaJIT!</dt> | |||
99 | <dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't | 99 | <dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't |
100 | support the implicit <tt>arg</tt> parameter for old-style vararg | 100 | support the implicit <tt>arg</tt> parameter for old-style vararg |
101 | functions from Lua 5.0.<br>Please convert your code to the | 101 | functions from Lua 5.0.<br>Please convert your code to the |
102 | <a href="https://www.lua.org/manual/5.1/manual.html#2.5.9">Lua 5.1 | 102 | <a href="https://www.lua.org/manual/5.1/manual.html#2.5.9"><span class="ext">»</span> Lua 5.1 |
103 | vararg syntax</a>.</dd> | 103 | vararg syntax</a>.</dd> |
104 | </dl> | 104 | </dl> |
105 | 105 | ||
@@ -156,7 +156,7 @@ don't report a bug about it. Check the <tt>mode</tt> parameter for the | |||
156 | In general, the only promising approach is to sandbox Lua code at the | 156 | In general, the only promising approach is to sandbox Lua code at the |
157 | process level and not the VM level.<br> | 157 | process level and not the VM level.<br> |
158 | 158 | ||
159 | More reading material at the <a href="http://lua-users.org/wiki/SandBoxes"><span class="ext">»</span> Lua Wiki</a> and <a href="https://en.wikipedia.org/wiki/Sandbox_(computer_security)">Wikipedia</a>. | 159 | More reading material at the <a href="http://lua-users.org/wiki/SandBoxes"><span class="ext">»</span> Lua Wiki</a> and <a href="https://en.wikipedia.org/wiki/Sandbox_(computer_security)"><span class="ext">»</span> Wikipedia</a>. |
160 | </dd> | 160 | </dd> |
161 | </dl> | 161 | </dl> |
162 | 162 | ||