diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-11 21:46:18 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-11 21:46:18 +0200 |
commit | 8e231f506a4c950e276b0400c78f2b78f5c65749 (patch) | |
tree | f8c4223192fb577cde2fd210456fd72ebee99086 | |
parent | 153ba49632aa30feaa4ad61b3d2ce2cc9c2fa441 (diff) | |
download | egawk-8e231f506a4c950e276b0400c78f2b78f5c65749.tar.gz egawk-8e231f506a4c950e276b0400c78f2b78f5c65749.tar.bz2 egawk-8e231f506a4c950e276b0400c78f2b78f5c65749.zip |
Fix usage for -Z option.
-rwxr-xr-x | ChangeLog | 4 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2018-11-11 Arnold D. Robbins <arnold@skeeve.com> + + * main.c (usage): Improve output for -Z in the help. + 2018-10-24 Arnold D. Robbins <arnold@skeeve.com> * main.c (usage): Improve output for -Y and add -Z in the help. @@ -615,7 +615,7 @@ usage(int exitval, FILE *fp) fputs(_("\t-Y\t\t\t--parsedebug\n"), fp); #endif #ifdef GAWKDEBUG - fputs(_("\t-Z\t\t\t--locale\n"), fp); + fputs(_("\t-Z locale-name\t\t--locale=locale-name\n"), fp); #endif /* This is one string to make things easier on translators. */ |