diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e1fba85bbe..c16c3b4958 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +19990727-21:00 CET Victor Szel + + source/compiler/harbour.y - Help screen updated. + /a,/v added /t deleted, made it even more Clipper like. + original Clipper typo "supress" fixed. + 19990727-20:15 GMT+2 Ryszard Glab *source/compiler/harbour.y diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index bcdb6631b3..5507787bea 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -1483,6 +1483,7 @@ void PrintUsage( char * szSelf ) { printf( "Syntax: %s [options]\n" "\nOptions: \n" + "\t/a\t\tautomatic memvar declaration\n" "\t/d[=]\t#define \n" #ifdef HARBOUR_OBJ_GENERATION "\t/f\t\tgenerated object file\n" @@ -1498,14 +1499,14 @@ void PrintUsage( char * szSelf ) "\t/l\t\tsuppress line number information\n" "\t/n\t\tno implicit starting procedure\n" "\t/o\tobject file drive and/or path\n" - "\t/p\t\tgenerate pre-processed output ( .ppo ) file\n" + "\t/p\t\tgenerate pre-processed output (.ppo) file\n" "\t/q\t\tquiet\n" "\t/s\t\tsyntax check only\n" - "\t/t\t\talternative method of symbol table initialization\n" - "\t/y\t\ttrace lex & yacc activity\n" - "\t/z\t\tsupress .and. & .or. shortcutting\n" - "\t/10\t\trestrict symbol length to 10 characters\n" + "\t/v\t\tvariables are assumed M->\n" "\t/w\t\tenable warnings\n" + "\t/y\t\ttrace lex & yacc activity\n" + "\t/z\t\tsuppress shortcutting (.and. & .or.)\n" + "\t/10\t\trestrict symbol length to 10 characters\n" , szSelf ); }