<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lua/manual, branch v5.5-beta</title>
<subtitle>A mirror of https://github.com/lua/lua
</subtitle>
<id>https://git.lua4.win/lua/atom?h=v5.5-beta</id>
<link rel='self' href='https://git.lua4.win/lua/atom?h=v5.5-beta'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/'/>
<updated>2025-06-27T17:46:41+00:00</updated>
<entry>
<title>Manual updated to version 5.5</title>
<updated>2025-06-27T17:46:41+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-06-27T17:46:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=1da89da62fac7515937fb0f583b97dd50fdd0cbe'/>
<id>urn:sha1:1da89da62fac7515937fb0f583b97dd50fdd0cbe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Check string indices when loading binary chunk</title>
<updated>2025-06-17T14:40:49+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-06-17T14:40:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=f71156744851701b5d5fabdda5061b31e53f8f14'/>
<id>urn:sha1:f71156744851701b5d5fabdda5061b31e53f8f14</id>
<content type='text'>
Lua is not religious about that, but it tries to avoid crashes when
loading binary chunks.
</content>
</entry>
<entry>
<title>The main thread cannot be closed</title>
<updated>2025-06-13T17:08:38+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-06-13T17:08:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=e657a48ea5698bbd9982d878eb65e6615ec94f7e'/>
<id>urn:sha1:e657a48ea5698bbd9982d878eb65e6615ec94f7e</id>
<content type='text'>
No thread started with pcall (instead of resume) can be closed,
because coroutine.close would not respect the expected number of
results from the protected call.
</content>
</entry>
<entry>
<title>A coroutine can close itself</title>
<updated>2025-06-12T14:15:09+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-06-12T14:15:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=fd897027f19288ce2cb0249cb8c1818e2f3f1c4c'/>
<id>urn:sha1:fd897027f19288ce2cb0249cb8c1818e2f3f1c4c</id>
<content type='text'>
A call to close itself will close all its to-be-closed variables and
return to the resume that (re)started the coroutine.
</content>
</entry>
<entry>
<title>Loading a binary chunk should not break assertions</title>
<updated>2025-06-04T15:55:43+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-06-04T15:55:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=d05fe48bfdd89956c0ebd115dca0fb115aa28dd6'/>
<id>urn:sha1:d05fe48bfdd89956c0ebd115dca0fb115aa28dd6</id>
<content type='text'>
Although the execution of a bad binary chunk can crash the interpreter,
simply loading it should be safe.
</content>
</entry>
<entry>
<title>Proper error message when jumping into 'global *'</title>
<updated>2025-05-18T15:03:54+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-05-18T15:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=6d53701c7a0dc4736d824fd891ee6f22265d0d68'/>
<id>urn:sha1:6d53701c7a0dc4736d824fd891ee6f22265d0d68</id>
<content type='text'>
A goto cannot jump into the scope of any variable declaration,
including 'global *'. To report the error, it needs a "name" for
the scope it is entering.
</content>
</entry>
<entry>
<title>Variable attributes can prefix name list</title>
<updated>2025-05-18T14:43:43+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-05-18T14:43:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=abbae57c7844b1121e7251d56f681394f20c1821'/>
<id>urn:sha1:abbae57c7844b1121e7251d56f681394f20c1821</id>
<content type='text'>
In this format, the attribute applies to all names in the list;
e.g. "global&lt;const&gt; print, require, math".
</content>
</entry>
<entry>
<title>Collective declaration for globals ('global *')</title>
<updated>2025-05-13T14:43:10+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-05-13T14:43:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=3b9dd52be02fd43c598f4adb6fa7844e6a573923'/>
<id>urn:sha1:3b9dd52be02fd43c598f4adb6fa7844e6a573923</id>
<content type='text'>
</content>
</entry>
<entry>
<title>New syntax 'global function'</title>
<updated>2025-05-08T14:08:03+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-05-08T14:08:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=3f0ea90aa8b8493485637f6e8d2a070a1ac0d5cb'/>
<id>urn:sha1:3f0ea90aa8b8493485637f6e8d2a070a1ac0d5cb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>First implementation of global declarations</title>
<updated>2025-05-05T19:24:59+00:00</updated>
<author>
<name>Roberto Ierusalimschy</name>
<email>roberto@inf.puc-rio.br</email>
</author>
<published>2025-05-05T19:24:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/lua/commit/?id=be8120906304a8658fab998587b969e0e42f5650'/>
<id>urn:sha1:be8120906304a8658fab998587b969e0e42f5650</id>
<content type='text'>
</content>
</entry>
</feed>
