aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-05-08 17:50:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-05-08 17:50:10 -0300
commit262dc5729a28b2bad0b6413d4eab2290d14395cf (patch)
treec92cbf6c6d5d88bc352dd71f7f27be4dd44cf16f /lgc.c
parent9d985db7bb09c92b5b3fa660fffe5907d01e6a02 (diff)
downloadlua-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lgc.c b/lgc.c
index 700390d2..0ad3a16f 100644
--- a/lgc.c
+++ b/lgc.c
@@ -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*/
1547static l_obj singlestep (lua_State *L, int fast) { 1547static l_obj singlestep (lua_State *L, int fast) {