about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2008-08-29 02:28:21 +0000
committerClint Adams <clint@users.sourceforge.net>2008-08-29 02:28:21 +0000
commit85c028bd25dd7ffb85a7ce4429a4ec4ec713b4e3 (patch)
tree1220d3d129e9658f462601da8ff14933158856a7
parent4ee3f5ffe251f25a02d0ee00c142d20426a2aaf7 (diff)
downloadzsh-85c028bd25dd7ffb85a7ce4429a4ec4ec713b4e3.tar.gz
zsh-85c028bd25dd7ffb85a7ce4429a4ec4ec713b4e3.tar.xz
zsh-85c028bd25dd7ffb85a7ce4429a4ec4ec713b4e3.zip
Frank Terbeck: 25538: add missing backslash.
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_git2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ae22e2b3..ed29ab08a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2008-08-29  Clint Adams  <clint@zsh.org>
 
+	* Frank Terbeck: 25538: Completion/Unix/Command/_git: add missing
+	backslash.
+
 	* Frank Terbeck: 25537: Completion/Unix/Command/_git: add --abort
 	to options for 'git am'.
 
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index f65936ad3..09ffdb5a5 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -1614,7 +1614,7 @@ _git-clone () {
   _arguments \
     '--bare[make a bare GIT repository]' \
     '(-l --local)'{-l,--local}'[perform a local cloning of a repository]' \
-    '(-s --shared)'{-s,--shared}'[share the objects with the source repository (warning: see man page)]'
+    '(-s --shared)'{-s,--shared}'[share the objects with the source repository (warning: see man page)]' \
     '--reference[reference repository]:repository:_directories' \
     '(-q --quiet)'{-q,--quiet}'[operate quietly]' \
     '(-n --no-checkout)'{-n,--no-checkout}'[do not checkout HEAD after clone is complete]' \