aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-19 13:14:09 -0300
commit9618aaf07d0d82ccbac91db22cb42451ec17d7ed (patch)
tree199314fbf7462d174921c71af389da14b4f6c595 /lstate.h
parentbec9bc4154e54fbc19b134874f6301f1e4654d5d (diff)
downloadlua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.bz2
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.zip
small corrections in comments
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 6692e097..303349f0 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.8 1998/05/27 13:03:40 roberto Exp roberto $ 2** $Id: lstate.h,v 1.9 1998/06/02 20:37:04 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -46,7 +46,7 @@ struct ref {
46 46
47 47
48struct lua_State { 48struct lua_State {
49 /* trhead-specific state */ 49 /* thread-specific state */
50 struct Stack stack; /* Lua stack */ 50 struct Stack stack; /* Lua stack */
51 struct C_Lua_Stack Cstack; /* C2lua struct */ 51 struct C_Lua_Stack Cstack; /* C2lua struct */
52 void *errorJmp; /* current error recover point */ 52 void *errorJmp; /* current error recover point */