aboutsummaryrefslogtreecommitdiff
path: root/opcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'opcode.c')
-rw-r--r--opcode.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/opcode.c b/opcode.c
index 152970aa..fe5c6dfc 100644
--- a/opcode.c
+++ b/opcode.c
@@ -3,7 +3,7 @@
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4*/ 4*/
5 5
6char *rcs_opcode="$Id: opcode.c,v 3.36 1995/04/11 17:56:30 celes Exp roberto $"; 6char *rcs_opcode="$Id: opcode.c,v 3.37 1995/05/02 18:43:03 roberto Exp roberto $";
7 7
8#include <setjmp.h> 8#include <setjmp.h>
9#include <stdlib.h> 9#include <stdlib.h>
@@ -68,14 +68,10 @@ Object *luaI_Address (lua_Object o)
68** Error messages 68** Error messages
69*/ 69*/
70 70
71#define MAXMESSAGE MAXFUNCSTACK*80
72 71
73static void lua_message (char *s) 72static void lua_message (char *s)
74{ 73{
75 char msg[MAXMESSAGE]; 74 luaI_reportbug(s, 1);
76 strcpy (msg, s);
77 luaI_reportbug(msg, MAXMESSAGE-strlen(s));
78 lua_pushstring(msg);
79 do_call(&luaI_fallBacks[FB_ERROR].function, (top-stack)-1, 0, (top-stack)-1); 75 do_call(&luaI_fallBacks[FB_ERROR].function, (top-stack)-1, 0, (top-stack)-1);
80} 76}
81 77