summaryrefslogtreecommitdiff
path: root/etc/noparser.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2010-01-14 12:00:00 +0000
committerrepogen <>2010-01-14 12:00:00 +0000
commitecd48c2901f08a88db32139b97c35c59eba1f19e (patch)
tree526e8dac3e037de0024b37c89fa3150baeea969f /etc/noparser.c
parent22912c77c80f8de8f7accd3319c726f7c5349fd3 (diff)
downloadlua-github-ca4840c927068d80bc64fcf013dc51e0d9aed8cb.tar.gz
Lua 5.2.0-work25.2.0-work2
Diffstat (limited to 'etc/noparser.c')
-rw-r--r--etc/noparser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/noparser.c b/etc/noparser.c
index 5e0e2031..f1fd4aea 100644
--- a/etc/noparser.c
+++ b/etc/noparser.c
@@ -34,7 +34,7 @@ LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, Varlist *varl
UNUSED(z);
UNUSED(buff);
UNUSED(name);
- lua_pushliteral(L,"parser not loaded");
+ lua_pushliteral(L,"parser not available");
lua_error(L);
return NULL;
}
@@ -49,7 +49,7 @@ LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data,
UNUSED(w);
UNUSED(data);
UNUSED(strip);
- lua_pushliteral(L,"dumper not loaded");
+ lua_pushliteral(L,"dumper not available");
lua_error(L);
return 0;
}
@@ -63,7 +63,7 @@ LUAI_FUNC Proto *luaU_undump (lua_State *L, ZIO *z, Mbuffer *buff, const char *n
UNUSED(z);
UNUSED(buff);
UNUSED(name);
- lua_pushliteral(L,"cannot load binary chunks");
+ lua_pushliteral(L,"binary loader not available");
lua_error(L);
return NULL;
}