diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-24 15:39:31 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-24 15:39:31 -0400 |
commit | 412c272389116f18218148c7a84c0486ad814051 (patch) | |
tree | 392641e5e9afb5f86b98d80b6f9cb1a578099740 /main.c | |
parent | cd99e34adaad23a24b3333fe45d4267fef3a1eeb (diff) | |
download | egawk-412c272389116f18218148c7a84c0486ad814051.tar.gz egawk-412c272389116f18218148c7a84c0486ad814051.tar.bz2 egawk-412c272389116f18218148c7a84c0486ad814051.zip |
Fix option ordering in usage output.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -820,9 +820,9 @@ usage(int exitval, FILE *fp) fputs(_("\t-i includefile\t\t--include=includefile\n"), fp); fputs(_("\t-l library\t\t--load=library\n"), fp); fputs(_("\t-L [fatal]\t\t--lint[=fatal]\n"), fp); - fputs(_("\t-n\t\t\t--non-decimal-data\n"), fp); fputs(_("\t-M\t\t\t--bignum\n"), fp); fputs(_("\t-N\t\t\t--use-lc-numeric\n"), fp); + fputs(_("\t-n\t\t\t--non-decimal-data\n"), fp); fputs(_("\t-o[file]\t\t--pretty-print[=file]\n"), fp); fputs(_("\t-O\t\t\t--optimize\n"), fp); fputs(_("\t-p[file]\t\t--profile[=file]\n"), fp); |