aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
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 /lobject.c
parentbec9bc4154e54fbc19b134874f6301f1e4654d5d (diff)
downloadlua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.gz
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.tar.bz2
lua-9618aaf07d0d82ccbac91db22cb42451ec17d7ed.zip
small corrections in comments
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index 99c76233..8e1742dd 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 1.11 1998/03/09 21:49:52 roberto Exp roberto $ 2** $Id: lobject.c,v 1.12 1998/06/18 16:57:03 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -52,7 +52,7 @@ int luaO_equalObj (TObject *t1, TObject *t2)
52 case LUA_T_CLOSURE: return t1->value.cl == t2->value.cl; 52 case LUA_T_CLOSURE: return t1->value.cl == t2->value.cl;
53 default: 53 default:
54 LUA_INTERNALERROR("invalid type"); 54 LUA_INTERNALERROR("invalid type");
55 return 0; /* UNREACHEABLE */ 55 return 0; /* UNREACHABLE */
56 } 56 }
57} 57}
58 58