mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 11:01:13 +02:00
42063: getopts errors now report "+" in front of option where appropriate
This commit is contained in:
parent
77a39b57bf
commit
755f8571d4
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-12-01 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* dana: 42063: Src/builtin.c: getopts errors now report "+" if
|
||||
appropriate for option.
|
||||
|
||||
2017-11-24 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* 42031 + 42048: Doc/Zsh/cond.yo, Doc/Zsh/options.yo, README,
|
||||
|
|
|
@ -5442,8 +5442,9 @@ bin_getopts(UNUSED(char *name), char **argv, UNUSED(Options ops), UNUSED(int fun
|
|||
if(quiet) {
|
||||
zoptarg = metafy(optbuf, lenoptbuf, META_DUP);
|
||||
} else {
|
||||
zwarn(*p == '?' ? "bad option: -%c" :
|
||||
"argument expected after -%c option", opch);
|
||||
zwarn(*p == '?' ? "bad option: %c%c" :
|
||||
"argument expected after %c%c option",
|
||||
"?-+"[lenoptbuf], opch);
|
||||
zoptarg=ztrdup("");
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue