aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-02-25 18:07:26 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-02-25 18:07:26 -0300
commit6a853fcb8b9e333d768c739c36c99b144bbde607 (patch)
tree5645e5fbe3a43f15044591be30c5d4607cb7357c /ltm.c
parent31bea2190b25e5b6687d92d807af522378168bfa (diff)
downloadlua-6a853fcb8b9e333d768c739c36c99b144bbde607.tar.gz
lua-6a853fcb8b9e333d768c739c36c99b144bbde607.tar.bz2
lua-6a853fcb8b9e333d768c739c36c99b144bbde607.zip
details (from lhf)
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltm.c b/ltm.c
index 78620286..4a02ac8d 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.21 1999/02/04 18:59:31 roberto Exp roberto $ 2** $Id: ltm.c,v 1.22 1999/02/25 15:16:26 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -82,7 +82,7 @@ static void checktag (int tag) {
82 82
83void luaT_realtag (int tag) { 83void luaT_realtag (int tag) {
84 if (!(L->last_tag <= tag && tag < LUA_T_NIL)) 84 if (!(L->last_tag <= tag && tag < LUA_T_NIL))
85 luaL_verror("tag %d is not result of `newtag'", tag); 85 luaL_verror("tag %d was not created by `newtag'", tag);
86} 86}
87 87
88 88