diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 518eaa224a..6fc49bea4b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2012-11-12 16:35 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * harbour/include/hbexpra.c + ! fixed recently added error in macrocompiler mode + 2012-11-12 15:36 UTC+0100 Viktor Szakats (harbour syenar.net) * package/harbour.spec * deleted reference to 'hbhttpds' which no longer exists diff --git a/harbour/include/hbexpra.c b/harbour/include/hbexpra.c index 8ed8bcc554..1d22a02f51 100644 --- a/harbour/include/hbexpra.c +++ b/harbour/include/hbexpra.c @@ -410,7 +410,11 @@ HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COM else { /* @ 0,0 GET &(var) */ +#if defined( HB_MACRO_SUPPORT ) + hb_macroError( EG_SYNTAX, HB_COMP_PARAM ); +#else hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_GET_COMPLEX_MACRO, NULL, NULL ); +#endif } } else