2009-06-23 02:15 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/compiler/hbcmplib.c
    * removed automatically set 1-st parameter in hb_compile*() functions
      so user can control it from .prg code
This commit is contained in:
Przemyslaw Czerpak
2009-06-23 00:15:42 +00:00
parent c32cb146f5
commit 1ef31fd275
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-23 02:15 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/compiler/hbcmplib.c
* removed automatically set 1-st parameter in hb_compile*() functions
so user can control it from .prg code
2009-06-23 01:56 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
+ Added information about C/C++ mode defaults.

View File

@@ -83,7 +83,6 @@ static void hb_compGenArgList( int iFirst, int iLast,
argv = ( char ** ) hb_xgrab( sizeof( char * ) * ( argc + 1 ) );
argc = 0;
argv[ argc++ ] = ( char * ) "";
for( i = iFirst; i <= iLast; ++i )
{
pParam = hb_param( i, HB_IT_ARRAY | HB_IT_STRING );