aboutsummaryrefslogtreecommitdiff
path: root/lmathlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lmathlib.c')
-rw-r--r--lmathlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lmathlib.c b/lmathlib.c
index b1a70959..a4fa618c 100644
--- a/lmathlib.c
+++ b/lmathlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmathlib.c,v 1.54 2002/12/20 10:26:33 roberto Exp roberto $ 2** $Id: lmathlib.c,v 1.55 2003/03/11 12:24:34 roberto Exp roberto $
3** Standard mathematical library 3** Standard mathematical library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -240,7 +240,7 @@ LUALIB_API int luaopen_math (lua_State *L) {
240 lua_settable(L, -3); 240 lua_settable(L, -3);
241 lua_pushliteral(L, "__pow"); 241 lua_pushliteral(L, "__pow");
242 lua_pushcfunction(L, math_pow); 242 lua_pushcfunction(L, math_pow);
243 lua_settable(L, LUA_REGISTRYINDEX); 243 lua_settable(L, LUA_GLOBALSINDEX);
244 return 1; 244 return 1;
245} 245}
246 246