diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 73b431e678..6388a1335a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-05 12:53 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * source/pp/hbppgen.c + * contrib/examples/pp/hbpp.c + * Headers cleaned. + 2008-06-05 12:42 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * make_gcc.mak diff --git a/harbour/contrib/examples/pp/hbpp.c b/harbour/contrib/examples/pp/hbpp.c index eec84390b2..b29ae0b9e9 100644 --- a/harbour/contrib/examples/pp/hbpp.c +++ b/harbour/contrib/examples/pp/hbpp.c @@ -114,7 +114,7 @@ int main( int argc, char * argv[] ) HB_TRACE(HB_TR_DEBUG, ("main(%d, %p)", argc, argv)); - printf( "Harbour Preprocessor %d.%d.%d\n", + printf( "Harbour Preprocessor (old revision) %d.%d.%d\n", HB_VER_MAJOR, HB_VER_MINOR, HB_VER_REVISION ); printf( "Copyright 1999-2008, http://www.harbour-project.org\n" ); diff --git a/harbour/source/pp/hbppgen.c b/harbour/source/pp/hbppgen.c index b7f4a552ae..f730cdf115 100644 --- a/harbour/source/pp/hbppgen.c +++ b/harbour/source/pp/hbppgen.c @@ -496,7 +496,8 @@ static int hb_pp_parseChangelog( PHB_PP_STATE pState, const char * pszFileName, */ static void hb_pp_usage( char * szName ) { - printf( "Syntax: %s [.prg] [options]\n\n", szName ); + printf( "\n" ); + printf( "Syntax: %s [options]\n\n", szName ); printf( "Options: -i \tadd #include file search path\n" " -c[]\tlook for ChangeLog file\n" " -o \tcreates .c file with PP rules\n" @@ -514,6 +515,10 @@ int main( int argc, char * argv[] ) int iSVNID = 0, iResult = 0, i; PHB_PP_STATE pState; + printf( "Harbour Preprocessor %d.%d.%d\n", + HB_VER_MAJOR, HB_VER_MINOR, HB_VER_REVISION ); + printf( "Copyright 1999-2008, http://www.harbour-project.org\n" ); + pState = hb_pp_new(); if( argc >= 2 )