mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-21 10:28:05 +02:00
51890: fix "whence -wa" for multiple arguments
This commit is contained in:
parent
a84fdd7c8f
commit
5ead24c881
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2023-07-09 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 51890: Src/builtin.c: fix "whence -wa" for multiple arguments
|
||||||
|
|
||||||
2023-06-26 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
2023-06-26 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||||
|
|
||||||
* 51889: Src/Modules/zftp.c, Src/mkbltnmlst.sh: enable loading a
|
* 51889: Src/Modules/zftp.c, Src/mkbltnmlst.sh: enable loading a
|
||||||
|
|
|
@ -4046,6 +4046,7 @@ bin_whence(char *nam, char **argv, Options ops, int func)
|
||||||
/* Take arguments literally -- do not glob */
|
/* Take arguments literally -- do not glob */
|
||||||
queue_signals();
|
queue_signals();
|
||||||
for (; *argv; argv++) {
|
for (; *argv; argv++) {
|
||||||
|
informed = 0;
|
||||||
if (!OPT_ISSET(ops,'p') && !allmatched) {
|
if (!OPT_ISSET(ops,'p') && !allmatched) {
|
||||||
char *suf;
|
char *suf;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue