* gasp.c (show_usage): Put program_name argument in first fprintf,

not second.
This commit is contained in:
Ian Lance Taylor 1995-09-08 04:30:24 +00:00
parent ebf6d5e63d
commit 1359db1b8c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Sep 8 00:27:46 1995 Ian Lance Taylor <ian@cygnus.com>
* gasp.c (show_usage): Put program_name argument in first fprintf,
not second.
Thu Sep 7 12:33:58 1995 Ian Lance Taylor <ian@cygnus.com>
* expr.c (operand): Handle 08 and 09 in MRI mode.

View File

@ -3500,14 +3500,14 @@ Usage: %s \n\
[-h] [--help] print this message\n\
[-M] [--mri] enter MRI compatibility mode\n\
[-o out] [--output out] set the output file\n\
[-p] [--print] print line numbers\n");
[-p] [--print] print line numbers\n", program_name);
fprintf (file, "\
[-s] [--copysource] copy source through as comments \n\
[-u] [--unreasonable] allow unreasonable nesting\n\
[-v] [--version] print the program version\n\
[-Dname=value] create preprocessor variable called name, with value\n\
[-Ipath] add to include path list\n\
[in-file]\n", program_name);
[in-file]\n");
exit (status);
}