about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2007-10-18 22:25:30 +0000
committerClint Adams <clint@users.sourceforge.net>2007-10-18 22:25:30 +0000
commit8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3 (patch)
treeadf079b1425e277411d5ad78f4e794423a231620 /Completion
parent560da971cc4125323cf1b77566b0f0d43fd3a84a (diff)
downloadzsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.tar.gz
zsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.tar.xz
zsh-8eeb27e0e6abfe90d22c8a0238aa6573bba1a1e3.zip
Mikael Magnusson: 23991: fix typo in __git_blobs().
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_git2
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] )) ||