diff options
author | Peter Stephenson <pws@zsh.org> | 2015-05-28 18:32:39 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-05-28 18:32:39 +0100 |
commit | 2b08d0ed6747a4acf44b73068bfafc54ca1d0acf (patch) | |
tree | 6b2ef1ca29d0633ee231e6181a1b0d5e16356691 /Src/builtin.c | |
parent | cb596a55d921cb638a3cf0ede3ee60ae13728c10 (diff) | |
download | zsh-2b08d0ed6747a4acf44b73068bfafc54ca1d0acf.tar.gz zsh-2b08d0ed6747a4acf44b73068bfafc54ca1d0acf.tar.xz zsh-2b08d0ed6747a4acf44b73068bfafc54ca1d0acf.zip |
35318: POSIX_BUILTINS behaviour for getopts.
It needs to keep OPTIND, as well as the index within the string pointed to by OPTIND, global in this case.
Diffstat (limited to 'Src/builtin.c')
-rw-r--r-- | Src/builtin.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index a9afb4540..18c22f29e 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -4713,6 +4713,10 @@ bin_shift(char *name, char **argv, Options ops, UNUSED(int func)) return ret; } +/* + * Position of getopts option within OPTIND argument with multiple options. + */ + /**/ int optcind; |