2011-05-17 17:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/pp/ppcore.c
    ! do not strip spaces from serialized codeblocks with late macro
      evaluation
This commit is contained in:
Przemyslaw Czerpak
2011-05-17 15:33:28 +00:00
parent 9178af03a4
commit dfbe9dd6ce
2 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-05-17 17:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/pp/ppcore.c
! do not strip spaces from serialized codeblocks with late macro
evaluation
2011-05-17 16:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* src/compiler/gencc.c
! hb_p_pushlong: conditional -gc3 generated code modified to

View File

@@ -6272,7 +6272,8 @@ char * hb_pp_tokenBlockString( PHB_PP_STATE pState, PHB_PP_TOKEN pToken,
int iBraces = 0;
do
{
hb_pp_tokenStr( pToken, pState->pBuffer, HB_FALSE, HB_TRUE, ltype );
hb_pp_tokenStr( pToken, pState->pBuffer, ltype != HB_PP_TOKEN_NUL,
HB_TRUE, ltype );
ltype = HB_PP_TOKEN_TYPE( pToken->type );
switch( ltype )
{