see changelog

This commit is contained in:
Eddie Runia
1999-07-20 14:48:06 +00:00
parent 8126743d2d
commit 8bb417d651
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
19990721-16:35 CET David G. Holm <dholm@jsd-llc.com>
* 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;

View File

@@ -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 },