aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index e598ae96..50ccad9b 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.131 2014/10/25 11:50:46 roberto Exp roberto $ 2** $Id: ldo.c,v 2.132 2014/11/02 19:19:04 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -69,7 +69,7 @@
69 69
70#else /* }{ */ 70#else /* }{ */
71 71
72/* ANSI handling with long jumps */ 72/* ISO C handling with long jumps */
73#define LUAI_THROW(L,c) longjmp((c)->b, 1) 73#define LUAI_THROW(L,c) longjmp((c)->b, 1)
74#define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } 74#define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a }
75#define luai_jmpbuf jmp_buf 75#define luai_jmpbuf jmp_buf