diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2011-03-12 01:04:00 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2011-03-12 01:04:00 +0000 |
commit | 9b2ab24ea5525328367c7dd857f840f3c8b6a36a (patch) | |
tree | 5b6b0027bc8ed12c195a0ca533e5355da78e5c8c /Completion | |
parent | 4263d2b8215024e4f93620b791b83c2c7f878f94 (diff) | |
download | zsh-9b2ab24ea5525328367c7dd857f840f3c8b6a36a.tar.gz zsh-9b2ab24ea5525328367c7dd857f840f3c8b6a36a.tar.xz zsh-9b2ab24ea5525328367c7dd857f840f3c8b6a36a.zip |
Greg Klanderman: 28887: fix quoting in defs array
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Type/_command_names | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Type/_command_names b/Completion/Zsh/Type/_command_names index 1f2af5700..24933c234 100644 --- a/Completion/Zsh/Type/_command_names +++ b/Completion/Zsh/Type/_command_names @@ -28,7 +28,7 @@ else defs=( "$defs[@]" 'builtins:builtin command:compadd -k builtins' - "functions:shell function:compadd -k functions$ffilt" + "functions:shell function:compadd -k 'functions$ffilt'" 'aliases:alias:compadd -k aliases' 'suffix-aliases:suffix alias:_suffix_alias_files' 'reserved-words:reserved word:compadd -k reswords' |