From bb1cb7b9f112be1fb8453cc7ef4cbaf544850618 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 1 Dec 1998 17:09:47 -0200 Subject: [PATCH] NUMBER_FMT also may be predefined in makefile --- lobject.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lobject.h b/lobject.h index 09f0d4e5..0fe44329 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.21 1998/06/18 16:57:03 roberto Exp roberto $ +** $Id: lobject.h,v 1.22 1998/07/12 16:11:55 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -30,12 +30,9 @@ */ #ifndef LUA_NUM_TYPE #define LUA_NUM_TYPE double +#define NUMBER_FMT "%g" #endif -/* -** format to convert number to strings -*/ -#define NUMBER_FMT "%g" typedef LUA_NUM_TYPE real;