From 04c41444e22740119d3c017830276d6590b09747 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Mar 2005 09:53:40 -0300 Subject: wrong comment corrected --- lobject.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lobject.c b/lobject.c index 51b75018..83aa8d5b 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.10 2005/03/08 20:10:05 roberto Exp roberto $ +** $Id: lobject.c,v 2.11 2005/03/09 16:28:07 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -29,7 +29,8 @@ const TValue luaO_nilobject = {{NULL}, LUA_TNIL}; /* ** converts an integer to a "floating point byte", represented as -** (mmmmmxxx), where the real value is (xxx) * 2^(mmmmm) +** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if +** eeeee != 0 and (xxx) otherwise. */ int luaO_int2fb (unsigned int x) { int e = 0; /* expoent */ -- cgit v1.2.3-55-g6feb