diff options
| author | Joshua Krusell <js.shirin@gmail.com> | 2021-02-03 11:33:47 +0000 |
|---|---|---|
| committer | Peter Stephenson <p.stephenson@samsung.com> | 2021-02-03 11:33:47 +0000 |
| commit | 9120d1e841b0813f1c71d55f77c3d18fc8318187 (patch) | |
| tree | 3e19f9e06f35b27d342e073344ffc79ac2ddbf79 /Src/Modules/zutil.c | |
| parent | 47883: _awk: support gawk ver.5 (diff) | |
| download | zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar.gz zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar.bz2 zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar.lz zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar.xz zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.tar.zst zsh-9120d1e841b0813f1c71d55f77c3d18fc8318187.zip | |
47899: Improve error message from zparseopts.
Diffstat (limited to 'Src/Modules/zutil.c')
| -rw-r--r-- | Src/Modules/zutil.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Src/Modules/zutil.c b/Src/Modules/zutil.c index 5c96d06c1..c8017d0c0 100644 --- a/Src/Modules/zutil.c +++ b/Src/Modules/zutil.c @@ -1873,7 +1873,10 @@ bin_zparseopts(char *nam, char **args, UNUSED(Options ops), UNUSED(int func)) while (*++o) { if (!(d = sopts[STOUC(*o)])) { if (fail) { - zwarnnam(nam, "bad option: %c", *o); + if (*o != '-') + zwarnnam(nam, "bad option: %c", *o); + else + zwarnnam(nam, "bad option: %s", o); return 1; } o = NULL; |
