diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
commit | 262dc5729a28b2bad0b6413d4eab2290d14395cf (patch) | |
tree | c92cbf6c6d5d88bc352dd71f7f27be4dd44cf16f /lgc.c | |
parent | 9d985db7bb09c92b5b3fa660fffe5907d01e6a02 (diff) | |
download | lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.gz lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.bz2 lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.zip |
Details
Corrections in comments and manual. Added note in the manual about
local variables in the REPL.
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1541,7 +1541,7 @@ static void sweepstep (lua_State *L, global_State *g, | |||
1541 | ** object.) When 'fast' is true, 'singlestep' tries to finish a state | 1541 | ** object.) When 'fast' is true, 'singlestep' tries to finish a state |
1542 | ** "as fast as possible". In particular, it skips the propagation | 1542 | ** "as fast as possible". In particular, it skips the propagation |
1543 | ** phase and leaves all objects to be traversed by the atomic phase: | 1543 | ** phase and leaves all objects to be traversed by the atomic phase: |
1544 | ** That avoids traversing twice some objects, such as theads and | 1544 | ** That avoids traversing twice some objects, such as threads and |
1545 | ** weak tables. | 1545 | ** weak tables. |
1546 | */ | 1546 | */ |
1547 | static l_obj singlestep (lua_State *L, int fast) { | 1547 | static l_obj singlestep (lua_State *L, int fast) { |