diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-07-25 17:40:30 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-07-25 17:40:30 +0000 |
commit | af2e41f84549c004530a45a24a73d3b0c13020f0 (patch) | |
tree | 313790f84e4defbe68f2653e39533a60bb833812 | |
parent | d466332a5c9c1f459ae74303b869e8e55a88e3e6 (diff) | |
download | zsh-af2e41f84549c004530a45a24a73d3b0c13020f0.tar.gz zsh-af2e41f84549c004530a45a24a73d3b0c13020f0.tar.xz zsh-af2e41f84549c004530a45a24a73d3b0c13020f0.zip |
Fix typo.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Base/Utility/_describe | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index b1172382f..1b6358891 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-07-25 Bart Schaefer <schaefer@zsh.org> + * 15489: Completion/Base/Utility/_describe: Fix typo. + * 15488: Doc/Zsh/expn.yo: More index entry cleanup. Reorder the description section to look less as if it has two menus in info and to add some cross-references. diff --git a/Completion/Base/Utility/_describe b/Completion/Base/Utility/_describe index f97834586..25ca83486 100644 --- a/Completion/Base/Utility/_describe +++ b/Completion/Base/Utility/_describe @@ -29,7 +29,7 @@ zstyle -s ":completion:${curcontext}:$_type" list-separator _sep || _sep=-- _descr="$1" shift -if [[ -n "$showd" ]] && +if [[ -n "$_showd" ]] && zstyle -T ":completion:${curcontext}:$_type" list-grouped; then _oargv=( "$@" ) _grp=(-g) |