summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index 6b7097a6..ec928224 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.28 2005/05/20 15:53:42 roberto Exp roberto $ 2** $Id: lparser.c,v 2.29 2005/06/13 14:15:54 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*/
@@ -795,7 +795,7 @@ static UnOpr getunopr (int op) {
795 switch (op) { 795 switch (op) {
796 case TK_NOT: return OPR_NOT; 796 case TK_NOT: return OPR_NOT;
797 case '-': return OPR_MINUS; 797 case '-': return OPR_MINUS;
798 case '*': return OPR_LEN; 798 case '#': return OPR_LEN;
799 default: return OPR_NOUNOPR; 799 default: return OPR_NOUNOPR;
800 } 800 }
801} 801}