From b559aed2d38c6eafcc624da8599b6ac52e11f17c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 20 Feb 2013 11:08:56 -0300 Subject: 'l_tg' was renamed to 'l_mathop' and this use was not corrected at the time --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index bdbd6cb5..8bea8972 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.56 2012/08/16 17:34:28 roberto Exp roberto $ +** $Id: lobject.c,v 2.57 2013/01/29 16:00:40 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -149,7 +149,7 @@ static lua_Number lua_strx2number (const char *s, char **endptr) { *endptr = cast(char *, s); /* valid up to here */ ret: if (neg) r = -r; - return l_tg(ldexp)(r, e); + return l_mathop(ldexp)(r, e); } #endif -- cgit v1.2.3-55-g6feb