summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 3947bf5d..106f6a3c 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.7 1998/01/09 14:57:43 roberto Exp $ 2** $Id: llex.h,v 1.8 1998/05/27 13:03:40 roberto Exp roberto $
3** Lexical Analizer 3** Lexical Analizer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -32,7 +32,7 @@ enum RESERVED {
32struct ifState { 32struct ifState {
33 int elsepart; /* true if its in the $else part */ 33 int elsepart; /* true if its in the $else part */
34 int condition; /* true if $if condition is true */ 34 int condition; /* true if $if condition is true */
35 int skip; /* true if part must be skiped */ 35 int skip; /* true if part must be skipped */
36}; 36};
37 37
38 38