diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-05-19 11:37:06 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-05-19 11:37:06 +0000 |
commit | 15799cfbaefa53c3559968e13ec5e9dcb63fa822 (patch) | |
tree | 37916c5224e97723abd2151acf5fd8fa169d131c | |
parent | 7eed3e6d5dd9d1c07be0f6069728e21381718599 (diff) | |
download | zsh-15799cfbaefa53c3559968e13ec5e9dcb63fa822.tar.gz zsh-15799cfbaefa53c3559968e13ec5e9dcb63fa822.tar.xz zsh-15799cfbaefa53c3559968e13ec5e9dcb63fa822.zip |
unposted: Completion/compinit: typo in 25068
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/compinit | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 9bb282d3c..8832f928a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-19 Peter Stephenson <pws@csr.com> + + * unposted: Completion/compinit: typo in 25068. + 2008-05-18 Peter Stephenson <p.w.stephenson@ntlworld.com> * users/12858: Doc/Zsh/compsys.yo, diff --git a/Completion/compinit b/Completion/compinit index b577b6dc3..8db7f63f3 100644 --- a/Completion/compinit +++ b/Completion/compinit @@ -122,7 +122,7 @@ if [[ -n $_i_dumpfile ]]; then # Explicitly supplied dumpfile. typeset -g _comp_dumpfile="$_i_dumpfile" else - typeset -g comp_dumpfile="${ZDOTDIR:-$HOME}/.zcompdump" + typeset -g _comp_dumpfile="${ZDOTDIR:-$HOME}/.zcompdump" fi # The standard options set in completion functions. |