diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2010-06-03 13:38:17 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-06-03 13:38:17 +0000 |
| commit | 099dc207fa63dfb9d0bd16c8b084eff00a3761da (patch) | |
| tree | 1dddc994dd75f696ee9b0a459d2a390662a064da /Src/params.c | |
| parent | Holger Weiss: 27977: _git shouldn't return 0 if there are no matches. (diff) | |
| download | zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar.gz zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar.bz2 zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar.lz zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar.xz zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.tar.zst zsh-099dc207fa63dfb9d0bd16c8b084eff00a3761da.zip | |
27994: better error for failed parameter autoload
Diffstat (limited to 'Src/params.c')
| -rw-r--r-- | Src/params.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/params.c b/Src/params.c index 576de2f52..8a34618fe 100644 --- a/Src/params.c +++ b/Src/params.c @@ -461,7 +461,8 @@ getparamnode(HashTable ht, const char *nam) * stuff to go ahead with the autoload stub with * no error status we're in for all sorts of mayhem? */ - zerr("unknown parameter: %s", nam); + zerr("autoloading module %s failed to define parameter: %s", mn, + nam); } } return hn; |
