diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2008-05-08 14:04:51 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-05-08 14:04:51 +0000 |
| commit | f7246fb559da77ac718b610132cdfb6ea07dc686 (patch) | |
| tree | d19a25c7315641afe91d6e2007a54294d028fb3a | |
| parent | 24980: zmodload -mF (diff) | |
| download | zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar.gz zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar.bz2 zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar.lz zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar.xz zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.tar.zst zsh-f7246fb559da77ac718b610132cdfb6ea07dc686.zip | |
unposted: bad argument to zmodload -F error message
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/module.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2008-05-08 Peter Stephenson <pws@csr.com> + * unposted: Src/modules.c: bad arguments to error message. + * 24980: Doc/Zsh/builtins.yo, Src/builtin.c, Src/module.c, Src/zsh.h: add zmodload -mF to manipulate features by pattern. diff --git a/Src/module.c b/Src/module.c index c4fb95c78..22e9c6abb 100644 --- a/Src/module.c +++ b/Src/module.c @@ -3122,7 +3122,7 @@ bin_zmodload_features(const char *nam, char **args, Options ops) zwarnnam(nam, patprogs ? "module `%s' has no feature matching: `%s'" : "module `%s' has no such feature: `%s'", - *arrp); + modname, *arrp); return 1; } } |
