diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4e865d749d..f29be143b9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-03-12 14:07 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbnf/fttext.c + + Added FT_FWRITELN(). + * Converted FT_FWRITEL() to be a wrapper for FT_FWRITELN(). + + * contrib/hbxpp/thfuncx.prg + * Formatting. + 2010-03-12 11:39 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg + Readded -pipe option for gcc (except djgpp) and icc/linux family @@ -48,7 +56,7 @@ ! Disabled some code parts which didn't compile with >= 1.0.0 OpenSSL versions. This is not the right fix, but I just can't figure what went wrong (or what - has been changed) in OpenSSL which cases it. There + has been changed) in OpenSSL which causes it. There is something wrong around 'X509_NAME' symbol. * utils/hbmk2/hbmk2.prg @@ -306,7 +314,7 @@ * config/win/mingw.mk * config/wce/mingwarm.mk % Added -pipe option to win/gcc compilers, this way it's faster - (but consume more memory) since it passes intermediate files + (but consumes more memory) since it passes intermediate files - I could only spot the .s file - without writing them to disk. Probably we should enable this on other platforms as well, and if it works out well, also in hbmk2. diff --git a/harbour/contrib/hbnf/fttext.c b/harbour/contrib/hbnf/fttext.c index 7a3070a461..2618e423f9 100644 --- a/harbour/contrib/hbnf/fttext.c +++ b/harbour/contrib/hbnf/fttext.c @@ -1329,7 +1329,7 @@ HB_FUNC( FT_FAPPEND ) * $END$ */ -HB_FUNC( FT_FWRITEL ) +HB_FUNC( FT_FWRITELN ) { const char * theData = hb_parc( 1 ); int iDataLen = hb_parclen( 1 ); @@ -1400,6 +1400,10 @@ HB_FUNC( FT_FWRITEL ) hb_retl( err ); } +HB_FUNC( FT_FWRITEL ) +{ + HB_FUNC_EXEC( FT_FWRITELN ); +} /* $DOC$ * $FUNCNAME$ diff --git a/harbour/contrib/hbxpp/thfuncx.prg b/harbour/contrib/hbxpp/thfuncx.prg index f431a69e64..d0aa13800f 100644 --- a/harbour/contrib/hbxpp/thfuncx.prg +++ b/harbour/contrib/hbxpp/thfuncx.prg @@ -68,7 +68,7 @@ FUNCTION ThreadWait( aThreads, nTimeOut ) LOCAL xResult, nPos, apThIDs, th apThIDs := {} - FOR each th IN aThreads + FOR EACH th IN aThreads IF ISOBJECT( th ) AAdd( apThIDs, th:threadSelf ) ELSE @@ -89,7 +89,7 @@ FUNCTION ThreadWaitAll( aThreads, nTimeOut ) LOCAL apThIDs, th apThIDs := {} - FOR each th IN aThreads + FOR EACH th IN aThreads IF ISOBJECT( th ) AAdd( apThIDs, th:threadSelf ) ELSE