diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-08-21 17:48:21 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-08-21 17:48:21 +0000 |
commit | 10ad489ff08eb897b05cf0ff5f0458b19a32c1aa (patch) | |
tree | e1618a0daa7396c92c997c734a6af50ef428747e /Completion/Unix/Command/_git | |
parent | 489ba6da6e43a7d0430cd4783bb9c38a855d7122 (diff) | |
download | zsh-10ad489ff08eb897b05cf0ff5f0458b19a32c1aa.tar.gz zsh-10ad489ff08eb897b05cf0ff5f0458b19a32c1aa.tar.xz zsh-10ad489ff08eb897b05cf0ff5f0458b19a32c1aa.zip |
23785: add missing backslash in _arguments list in git-send-email.
Diffstat (limited to 'Completion/Unix/Command/_git')
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |