diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index fb18eff9b..e602bcaa9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-04 Clint Adams <clint@zsh.org> + + * Mikael Magnusson: 23906: Completion/Unix/Command/_git: add + missing backslash in _git-svn. + 2007-10-05 Peter Stephenson <p.w.stephenson@ntlworld.com * unposted, c.f. users/11935: Doc/Zsh/builtins.yo: quoting diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 3a365e528..f18af7560 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2472,7 +2472,7 @@ _git-svn () { '(-h -H --help)'{-h,-H,--help}'[display usage information]' \ '(-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' + '(-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' $arguments && ret=0 |