about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2011-05-08 21:19:29 +0000
committerWayne Davison <wayned@users.sourceforge.net>2011-05-08 21:19:29 +0000
commit15180bc0ec2f61d3288c356b002d08a4d4a4e704 (patch)
tree8d35e2572876cb3312131ab2b36621fa2d259a87
parent61505654942cb9895a9811fde1dcbb662fd7d66a (diff)
downloadzsh-15180bc0ec2f61d3288c356b002d08a4d4a4e704.tar.gz
zsh-15180bc0ec2f61d3288c356b002d08a4d4a4e704.tar.xz
zsh-15180bc0ec2f61d3288c356b002d08a4d4a4e704.zip
29187: add a missing backslash.
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Unix/Command/_git2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2d18e9d67..5a4299388 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-08  Wayne Davison  <wayned@users.sourceforge.net>
+
+	* Valentin Haenel: 29187: Completion/Unix/Command/_git: add a
+	missing backslash.
+
 2011-05-07  Barton E. Schaefer  <schaefer@zsh.org>
 
 	* 29175 (w/comment typo fixed): Src/mem.c: optimize freeheap.
@@ -14602,5 +14607,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5281 $
+* $Revision: 1.5282 $
 *****************************************************
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 4664cfa6e..f58550e9a 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -589,7 +589,7 @@ _git-commit () {
 (( $+functions[_git-describe] )) ||
 _git-describe () {
   _arguments -w -S -s \
-    '(*)--dirty=-[describe HEAD, adding mark if dirty]::mark'
+    '(*)--dirty=-[describe HEAD, adding mark if dirty]::mark' \
     '--all[use any ref found in "$GIT_DIR/refs/"]' \
     '--tags[use any ref found in "$GIT_DIR/refs/tags"]' \
     '(--tags)--contains[find the tag after the commit instead of before]' \