summaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-20 12:53:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-05-20 12:53:42 -0300
commitf21e9c172f9f15d8d7501e35635e78dc11f5ff58 (patch)
treecb50795d8bceff944dd8f7d75626069491d5e8d0 /lparser.c
parent67578ec51f1a3ec2c967f15d370067caf9e0b87b (diff)
downloadlua-f21e9c172f9f15d8d7501e35635e78dc11f5ff58.tar.gz
lua-f21e9c172f9f15d8d7501e35635e78dc11f5ff58.tar.bz2
lua-f21e9c172f9f15d8d7501e35635e78dc11f5ff58.zip
details
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index 8bcffc04..9d855a5e 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.26 2005/05/16 21:19:00 roberto Exp roberto $ 2** $Id: lparser.c,v 2.27 2005/05/17 19:49:15 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*/
@@ -792,7 +792,7 @@ static UnOpr getunopr (int op) {
792 switch (op) { 792 switch (op) {
793 case TK_NOT: return OPR_NOT; 793 case TK_NOT: return OPR_NOT;
794 case '-': return OPR_MINUS; 794 case '-': return OPR_MINUS;
795 case '*': return OPR_SIZE; 795 case '*': return OPR_LEN;
796 default: return OPR_NOUNOPR; 796 default: return OPR_NOUNOPR;
797 } 797 }
798} 798}