summaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
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}