diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index dc600799d..f30546b12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ 2007-08-21 Clint Adams <clint@zsh.org> * Matthieu Moy: 23785: Completion/Unix/Command/_git: add missing - backslash in _arguments list. + backslash in _arguments list in git-send-email. 2007-08-21 Peter Stephenson <pws@csr.com> diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 93341ad31..17af921b5 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1403,7 +1403,7 @@ _git-send-email () { '--in-reply-to[specify the contents of the first In-Reply-To header]' \ '--smtp-server[specify the outgoing smtp server]:smtp server:_hosts' \ '--subject[specify the initial subject of the email thread]' \ - '--to[specify the primary recipient of the emails]' + '--to[specify the primary recipient of the emails]' \ ':file:_files' && ret=0 } |