aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
commit4542fb9f78ff72c6bc72be76385f9710ffee867a (patch)
treed61e42e9130445fda7fe8968a6bf17ffc16f5364 /lstate.h
parent80e817719de40823622f0c91288d129293373875 (diff)
downloadlua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.gz
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.bz2
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.zip
comments (a few extra quotes around identifiers)
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lstate.h b/lstate.h
index 37bf7739..fb2e91b4 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.117 2014/10/07 18:29:13 roberto Exp roberto $ 2** $Id: lstate.h,v 2.118 2014/10/25 11:50:46 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -21,10 +21,10 @@
21** belong to one (and only one) of these lists, using field 'next' of 21** belong to one (and only one) of these lists, using field 'next' of
22** the 'CommonHeader' for the link: 22** the 'CommonHeader' for the link:
23** 23**
24** allgc: all objects not marked for finalization; 24** 'allgc': all objects not marked for finalization;
25** finobj: all objects marked for finalization; 25** 'finobj': all objects marked for finalization;
26** tobefnz: all objects ready to be finalized; 26** 'tobefnz': all objects ready to be finalized;
27** fixedgc: all objects that are not to be collected (currently 27** 'fixedgc': all objects that are not to be collected (currently
28** only small strings, such as reserved words). 28** only small strings, such as reserved words).
29 29
30*/ 30*/