aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-04 11:55:37 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-04 11:55:37 -0300
commit4321fde2a7059b5d5adcedd4f607f695ea30ff8b (patch)
tree97d6cf3b89c8e59e659ee4a4cc6165c739d14358 /opcode.h
parent8f3df1d471d4b7e643492f0e65fac2bdc960398a (diff)
downloadlua-4321fde2a7059b5d5adcedd4f607f695ea30ff8b.tar.gz
lua-4321fde2a7059b5d5adcedd4f607f695ea30ff8b.tar.bz2
lua-4321fde2a7059b5d5adcedd4f607f695ea30ff8b.zip
error inside an error method could break the stack.
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index d4516e86..111d3a4d 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1,6 +1,6 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: opcode.h,v 3.33 1997/04/11 21:34:53 roberto Exp roberto $ 3** $Id: opcode.h,v 3.35 1997/07/03 22:06:06 roberto Exp $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -168,4 +168,6 @@ void luaI_gcIM (TObject *o);
168int luaI_dorun (TFunc *tf); 168int luaI_dorun (TFunc *tf);
169int lua_domain (void); 169int lua_domain (void);
170 170
171extern TObject luaI_errorim;
172
171#endif 173#endif