diff options
author | Øystein Walle <oystwa@gmail.com> | 2013-10-20 19:41:03 +0200 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2013-10-21 17:39:56 +0200 |
commit | 07ca60acf44a4cf1d08eed9279897a8060f862ef (patch) | |
tree | 968fe4defde831ba1ffef125dc01d63ee036fde2 | |
parent | 80cb8e947fc2c28e7be4a4e548f0bb34f2a19e9d (diff) | |
download | zsh-07ca60acf44a4cf1d08eed9279897a8060f862ef.tar.gz zsh-07ca60acf44a4cf1d08eed9279897a8060f862ef.tar.xz zsh-07ca60acf44a4cf1d08eed9279897a8060f862ef.zip |
31858: _git: fix wrong default value
-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 fd8d54704..8753fa1b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-10-21 Øystein Walle <oystwa@gmail.com> + + * 31858: Completion/Unix/Command/_git: _git: fix wrong default + value + 2013-10-21 m0viefreak <m0viefreak.cm@googlemail.com> * 31857: Completion/Unix/Command/_git: _git: Remove unsupported -q diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 75884b717..a75ce5c76 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2150,7 +2150,7 @@ _git-config () { sendemail.confirm:'type of confirmation required before sending::->sendemail.confirm:auto' sendemail.envelopesender:'envelope sender to send emails as::_email_addresses' sendemail.from:'sender email address::_email_addresses' - sendemail.multiedit:'edit all files at once::->bool:false' + sendemail.multiedit:'edit all files at once::->bool:true' sendemail.signedoffbycc:'add Signed-off-by\: or Cc\: lines to Cc\: header::->bool:true' sendemail.smtppass:'password to use for SMTP-AUTH:password:->string' sendemail.suppresscc:'rules for suppressing Cc\:::->sendemail.suppresscc' |