diff options
Diffstat (limited to 'ldblib.c')
-rw-r--r-- | ldblib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldblib.c,v 1.53 2002/05/16 18:39:46 roberto Exp roberto $ | 2 | ** $Id: ldblib.c,v 1.54 2002/06/03 17:47:18 roberto Exp roberto $ |
3 | ** Interface from Lua to its debug API | 3 | ** Interface from Lua to its debug API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -246,7 +246,7 @@ static const luaL_reg dblib[] = { | |||
246 | 246 | ||
247 | 247 | ||
248 | LUALIB_API int lua_dblibopen (lua_State *L) { | 248 | LUALIB_API int lua_dblibopen (lua_State *L) { |
249 | luaL_opennamedlib(L, "dbg", dblib, 0); | 249 | luaL_opennamedlib(L, LUA_DBLIBNAME, dblib, 0); |
250 | lua_register(L, "_ERRORMESSAGE", errorfb); | 250 | lua_register(L, "_ERRORMESSAGE", errorfb); |
251 | return 0; | 251 | return 0; |
252 | } | 252 | } |