diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-21 10:52:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-03-21 10:52:33 -0300 |
commit | da4811238ab48446545621389cb07051982a8279 (patch) | |
tree | 56b1a056b383cb09295630e835ad12211036bd6d /ldo.c | |
parent | f96872a534f1d10788d5607d634cc77e25a887ff (diff) | |
download | lua-da4811238ab48446545621389cb07051982a8279.tar.gz lua-da4811238ab48446545621389cb07051982a8279.tar.bz2 lua-da4811238ab48446545621389cb07051982a8279.zip |
details (typos in comments)
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 2.113 2014/02/15 13:12:01 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 2.114 2014/02/26 15:27:56 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 | */ |
@@ -58,7 +58,7 @@ | |||
58 | 58 | ||
59 | #elif defined(LUA_USE_POSIX) /* }{ */ | 59 | #elif defined(LUA_USE_POSIX) /* }{ */ |
60 | 60 | ||
61 | /* in Posix, try _longjmp/_setjmp (more efficient) */ | 61 | /* in POSIX, try _longjmp/_setjmp (more efficient) */ |
62 | #define LUAI_THROW(L,c) _longjmp((c)->b, 1) | 62 | #define LUAI_THROW(L,c) _longjmp((c)->b, 1) |
63 | #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } | 63 | #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } |
64 | #define luai_jmpbuf jmp_buf | 64 | #define luai_jmpbuf jmp_buf |