diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index e602bcaa9..5a7adccaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ -2007-10-04 Clint Adams <clint@zsh.org> +2007-10-06 Clint Adams <clint@zsh.org> + + * 23908: Completion/Unix/Command/_git: add missing backslash in + _git-svn. * Mikael Magnusson: 23906: Completion/Unix/Command/_git: add missing backslash in _git-svn. diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index f18af7560..ddc84c6e0 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2473,7 +2473,7 @@ _git-svn () { '(-V --version)'{-V,--version}'[display version information]' \ '--minimize-connections[undocumented]' \ '(-R --svn-remote --remote)'{-R,--svn-remote,--remote}'[svn remote to use]:svn remote:__git_svn-remotes' \ - '(-i --id)'{-i,--id}'[set GIT_SVN_ID]:GIT_SVN_ID' + '(-i --id)'{-i,--id}'[set GIT_SVN_ID]:GIT_SVN_ID' \ $arguments && ret=0 case $state in |