diff options
-rw-r--r-- | lmathlib.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmathlib.c,v 1.66 2005/08/15 14:12:32 roberto Exp roberto $ | 2 | ** $Id: lmathlib.c,v 1.67 2005/08/26 17:36:32 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 | */ |
@@ -112,7 +112,10 @@ static int math_pow (lua_State *L) { | |||
112 | } | 112 | } |
113 | 113 | ||
114 | static int math_log (lua_State *L) { | 114 | static int math_log (lua_State *L) { |
115 | lua_pushnumber(L, log(luaL_checknumber(L, 1))); | 115 | lua_Number res = log(luaL_checknumber(L, 1)); |
116 | if (!lua_isnoneornil(L, 2)) | ||
117 | res /= log(luaL_checknumber(L, 2)); | ||
118 | lua_pushnumber(L, res); | ||
116 | return 1; | 119 | return 1; |
117 | } | 120 | } |
118 | 121 | ||