aboutsummaryrefslogtreecommitdiff
path: root/lua.stx
diff options
context:
space:
mode:
Diffstat (limited to 'lua.stx')
-rw-r--r--lua.stx3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.stx b/lua.stx
index 0aa36635..b1afe6b4 100644
--- a/lua.stx
+++ b/lua.stx
@@ -1,6 +1,6 @@
1%{ 1%{
2/* 2/*
3** $Id: lua.stx,v 1.18 1997/11/19 17:29:23 roberto Exp roberto $ 3** $Id: lua.stx,v 1.19 1997/11/21 19:00:46 roberto Exp roberto $
4** Syntax analizer and code generator 4** Syntax analizer and code generator
5** See Copyright Notice in lua.h 5** See Copyright Notice in lua.h
6*/ 6*/
@@ -573,6 +573,7 @@ static void init_state (TaggedString *filename)
573 else 573 else
574 L->currState->maxvars = -1; /* flag no debug information */ 574 L->currState->maxvars = -1; /* flag no debug information */
575 code_byte(0); /* to be filled with stacksize */ 575 code_byte(0); /* to be filled with stacksize */
576 L->lexstate->lastline = 0; /* invalidate it */
576} 577}
577 578
578 579