1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-15 13:34:18 +01:00

37400: typo gave unwanted error message in zsh_directory_name_generic

This commit is contained in:
Peter Stephenson 2015-12-14 10:59:03 +00:00
parent 9e185476f9
commit 53bc8ef2d8
2 changed files with 7 additions and 2 deletions

@ -1,3 +1,8 @@
2015-12-14 Peter Stephenson <p.stephenson@samsung.com>
* 37400: Functions/Chpwd/zsh_directory_name_generic: fix typo
that caused unwanted error message.
2015-12-13 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 37397: Adrien Vergé: Completion/Redhat/Command/_dnf: update

@ -16,7 +16,7 @@ zmodload -i zsh/parameter
zstyle -s ":zdn:${funcstack[2]}:" mapping _zdn_topvar || _zdn_topvar=zdn_top
if (( ! ${(P)#_zdn_topvar} )); then
print -r -- "$0: $_zdn_topver is not set" >&2
print -r -- "$0: $_zdn_topvar is not set" >&2
return 1
fi
@ -43,7 +43,7 @@ if [[ $1 = n ]]; then
if [[ -z $_zdn_cpt ]]; then
# If top level component, just try another expansion
if [[ $_zdn_var != $_zdn_top ]]; then
if [[ $_zdn_var != $_zdn_topvar ]]; then
# Committed to this expansion, so report failure.
print -r -- "$0: no expansion for directory name \`$_zdn_name'" >&2
fi