From 8bb417d651c55e93fb0e26a1c65e75e6e9371ec9 Mon Sep 17 00:00:00 2001 From: Eddie Runia Date: Tue, 20 Jul 1999 14:48:06 +0000 Subject: [PATCH] see changelog --- harbour/ChangeLog | 6 ++++++ harbour/source/compiler/harbour.y | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e1d3f22ec0..5af2c9cbfb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +19990721-16:35 CET David G. Holm + * source/compiler/harbour.y + ! Correct _StdFunc entty for INKEY to allow no parameters + - Removed _StdFunc entry for SET + * Display build date for include/version.h instead of a season + 19990721-15:10 CET Felipe Coury + bldodbc.bat; hbodbc.b32; source/odbc/bld32exe.bat; source/odbc/harbour.mdb; source/odbc/hb32.bat; source/odbc/odbc.c; source/odbc/odbc.txt; diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index aa81c8c585..a74b33c5f6 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -1175,7 +1175,8 @@ int harbour_main( int argc, char * argv[] ) FILENAME *pFileName =NULL; if( !_iQuiet ) - printf( "Harbour compiler build %i Summer 1999\n", hb_build ); + printf( "Harbour compiler build %i (%04d.%02d.%02d)\n", hb_build, + hb_year, hb_month, hb_day ); if( argc > 1 ) { @@ -4982,7 +4983,7 @@ static FUNCINFO _StdFun[] = { { "FILE" , 1, 1 }, { "FLOCK" , 0, 0 }, { "FOUND" , 0, 0 }, -{ "INKEY" , 1, 2 }, +{ "INKEY" , 0, 2 }, { "INT" , 1, 1 }, { "LASTREC" , 0, 0 }, { "LEN" , 1, 1 }, @@ -5004,7 +5005,6 @@ static FUNCINFO _StdFun[] = { { "RTRIM" , 1, 1 }, { "SECONDS" , 0, 0 }, { "SELECT" , 1, 1 }, -{ "SET" , 1, 3 }, { "SETPOS" , 2, 2 }, { "SPACE" , 1, 1 }, { "SQRT" , 1, 1 },