aboutsummaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-02 13:43:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-10-02 13:43:29 -0300
commitb840a7518df607d2a1024c33dc2cc2022054d40a (patch)
tree9ea72df79cb3a5b4cf6f8fa76026949b96cc278e /lparser.c
parentf54cdb33a565aacd41fe00a172a3062a4a33118b (diff)
downloadlua-b840a7518df607d2a1024c33dc2cc2022054d40a.tar.gz
lua-b840a7518df607d2a1024c33dc2cc2022054d40a.tar.bz2
lua-b840a7518df607d2a1024c33dc2cc2022054d40a.zip
details
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lparser.c b/lparser.c
index 833f1592..b83f5d19 100644
--- a/lparser.c
+++ b/lparser.c
@@ -627,7 +627,7 @@ static void prefixexp (LexState *ls, expdesc *v) {
627 case l_c('%'): { /* for compatibility only */ 627 case l_c('%'): { /* for compatibility only */
628 next(ls); /* skip `%' */ 628 next(ls); /* skip `%' */
629 singlevar(ls->fs, str_checkname(ls), v, 1); 629 singlevar(ls->fs, str_checkname(ls), v, 1);
630 check_condition(ls, v->k == VUPVAL, l_s("global upvalues are deprecated")); 630 check_condition(ls, v->k == VUPVAL, l_s("global upvalues are obsolete"));
631 next(ls); 631 next(ls);
632 return; 632 return;
633 } 633 }