summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-16 09:00:02 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-16 09:00:02 -0300
commit13230c451ba2feaef1c92c391451ee6471b15bb7 (patch)
tree83d6e55e8baa7796cd3882d9aa8bf101dc82cd4d
parent391c5459cbfb2a01a66b318f42cf780d952704b7 (diff)
downloadlua-13230c451ba2feaef1c92c391451ee6471b15bb7.tar.gz
lua-13230c451ba2feaef1c92c391451ee6471b15bb7.tar.bz2
lua-13230c451ba2feaef1c92c391451ee6471b15bb7.zip
details
-rw-r--r--lauxlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 496dee89..d0df881e 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.c,v 1.64 2002/04/02 20:42:49 roberto Exp roberto $ 2** $Id: lauxlib.c,v 1.65 2002/04/04 20:25:55 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -25,7 +25,7 @@ LUALIB_API const char *luaL_errstr (int errcode) {
25 static const char *const errstr[] = { 25 static const char *const errstr[] = {
26 "ok", 26 "ok",
27 "run-time error", 27 "run-time error",
28 "cannot open file", 28 "cannot read file",
29 "syntax error", 29 "syntax error",
30 "not enough memory", 30 "not enough memory",
31 "error in error handling" 31 "error in error handling"