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
This commit is contained in:
Przemyslaw Czerpak
2012-11-12 15:35:50 +00:00
parent 9448f6ecd2
commit 06167bb04b
2 changed files with 8 additions and 0 deletions

View File

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

View File

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