2009-05-15 13:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/pp/hbpp.c
    ! fixed -q2 parameter in hbpp
This commit is contained in:
Przemyslaw Czerpak
2009-05-15 10:57:13 +00:00
parent 0cf55690cb
commit 01b152188e
2 changed files with 12 additions and 5 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-15 13:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/pp/hbpp.c
! fixed -q2 parameter in hbpp
2009-05-15 12:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
% Changed default way of updating .po files. New method supports

View File

@@ -603,10 +603,6 @@ int main( int argc, char * argv[] )
int iSVNID = 0, iResult = 0, iQuiet = 0, i;
PHB_PP_STATE pState;
printf( "Harbour Preprocessor %d.%d.%d\n",
HB_VER_MAJOR, HB_VER_MINOR, HB_VER_RELEASE );
printf( "Copyright (c) 1999-2009, http://www.harbour-project.org/\n" );
pState = hb_pp_new();
if( argc >= 2 )
@@ -626,7 +622,7 @@ int main( int argc, char * argv[] )
iQuiet = 1;
else if( argv[i][2] == '-' && !argv[i][3] )
iQuiet = 0;
else if( argv[i][2] >= '0' && argv[i][2] <= '1' && !argv[i][3] )
else if( argv[i][2] >= '0' && argv[i][2] <= '2' && !argv[i][3] )
iQuiet = argv[i][2] - '0';
else
szFile = NULL;
@@ -703,6 +699,13 @@ int main( int argc, char * argv[] )
}
}
if( iQuiet < 2 )
{
printf( "Harbour Preprocessor %d.%d.%d\n",
HB_VER_MAJOR, HB_VER_MINOR, HB_VER_RELEASE );
printf( "Copyright (c) 1999-2009, http://www.harbour-project.org/\n" );
}
if( szFile )
{
if( !szRuleFile && !szVerFile )