diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-10-18 22:25:30 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-10-18 22:25:30 +0000 |
commit | 8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3 (patch) | |
tree | adf079b1425e277411d5ad78f4e794423a231620 /Completion/Unix | |
parent | 560da971cc4125323cf1b77566b0f0d43fd3a84a (diff) | |
download | zsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.tar.gz zsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.tar.xz zsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.zip |
Mikael Magnusson: 23991: fix typo in __git_blobs().
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 4400575f0..5beee3c4f 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2570,7 +2570,7 @@ __git_tree_ishs () { (( $+functions[__git_blobs] )) || __git_blobs () { - _git_guard $* "[[:xdigit:]]#" 'blob id' + __git_guard $* "[[:xdigit:]]#" 'blob id' } (( $+functions[__git_stages] )) || |