diff --git a/harbour/ChangeLog b/harbour/ChangeLog index aa618892f9..ead566524f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,11 @@ +20000102-14:27 EST Paul Tucker + * source/rtl/environ.c + * remove Borland check on define of VER_PLATFORM_WIN32_CE + * source/rtl/filesys.c + * removed duplicated comment lines. (was missing /* anyway) + * source/rdd/dbcmd.c + * added missing close comment. + 20000102-17:10:00 GMT+3 Luiz Rafael Culik * source/rtl/browdb.prg * source/rtl/text.prg diff --git a/harbour/source/rdd/dbcmd.c b/harbour/source/rdd/dbcmd.c index f40d65a48a..66eb57056e 100644 --- a/harbour/source/rdd/dbcmd.c +++ b/harbour/source/rdd/dbcmd.c @@ -7607,6 +7607,7 @@ HARBOUR HB_USED( void ) * $INCLUDE$ * * $END$ + */ HARBOUR HB___RDDSETDEFAULT( void ) { @@ -7624,4 +7625,3 @@ HARBOUR HB___RDDSETDEFAULT( void ) strcpy( szDefDriver, cDriverBuffer ); } } - diff --git a/harbour/source/rtl/environ.c b/harbour/source/rtl/environ.c index c3173230a2..2008088360 100644 --- a/harbour/source/rtl/environ.c +++ b/harbour/source/rtl/environ.c @@ -63,7 +63,7 @@ #define VER_PLATFORM_WIN32_WINDOWS 1 #endif -#if defined(__BORLANDC__) && defined(_WINDOWS_) && ! defined(VER_PLATFORM_WIN32_CE) +#if defined(_WINDOWS_) && ! defined(VER_PLATFORM_WIN32_CE) #define VER_PLATFORM_WIN32_CE 3 #endif diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index a73556bb07..f7ce0f31e7 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -78,10 +78,6 @@ * */ - * See doc/license.txt for licensing terms. - * - */ - /* NOTE: In DOS/DJGPP under WinNT4 hb_fsSeek( fhnd, offset < 0, FS_SET) will set the file pointer to the passed negative value, and the subsequent hb_fsWrite() call will fail. In CA-Clipper hb_fsSeek() will fail,