diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-30 16:53:28 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-30 16:53:28 -0200 |
commit | 4542fb9f78ff72c6bc72be76385f9710ffee867a (patch) | |
tree | d61e42e9130445fda7fe8968a6bf17ffc16f5364 /lstate.h | |
parent | 80e817719de40823622f0c91288d129293373875 (diff) | |
download | lua-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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 | */ |