diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-05-04 13:36:23 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-05-04 13:36:23 -0300 |
commit | 12acca7bd8168e12a09c345416ffd848e48b9ba4 (patch) | |
tree | d098069d920e529479a8f35d2952019320f254b7 /lparser.c | |
parent | d5fd44d747e9efce5875a0d08f6484f4187838bd (diff) | |
download | lua-12acca7bd8168e12a09c345416ffd848e48b9ba4.tar.gz lua-12acca7bd8168e12a09c345416ffd848e48b9ba4.tar.bz2 lua-12acca7bd8168e12a09c345416ffd848e48b9ba4.zip |
comments
Diffstat (limited to 'lparser.c')
-rw-r--r-- | lparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 2.21 2005/04/27 18:53:53 roberto Exp roberto $ | 2 | ** $Id: lparser.c,v 2.22 2005/04/29 12:43:47 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -834,7 +834,7 @@ static const struct { | |||
834 | 834 | ||
835 | 835 | ||
836 | /* | 836 | /* |
837 | ** subexpr -> (simplexep | unop subexpr) { binop subexpr } | 837 | ** subexpr -> (simpleexp | unop subexpr) { binop subexpr } |
838 | ** where `binop' is any binary operator with a priority higher than `limit' | 838 | ** where `binop' is any binary operator with a priority higher than `limit' |
839 | */ | 839 | */ |
840 | static BinOpr subexpr (LexState *ls, expdesc *v, unsigned int limit) { | 840 | static BinOpr subexpr (LexState *ls, expdesc *v, unsigned int limit) { |