On Tue, Feb 14, 2017 at 6:57 AM, Jiri Kosina <jikos@xxxxxxxxxx> wrote: > On Fri, 10 Feb 2017, Peter Stein wrote: > >> I am so sorry that I screw it up. I forgot to activate plain text in >> gmail. I hope this time it is received in proper format. > > Hi Peter, > > unfortunately it's still line-wrapped. > Peter, Pasting patch into gmail interface always corrupts it, even if you select "plain text mode". The best way to send a patch is using "git send-email". Stick the following in .git/config (or your ~/.gitconfig) [sendemail] smtpserver = smtp.gmail.com smtpserverport = 587 smtpencryption = tls smtpUser = <gmail user name> Then you can do: git send-email --annotate --smtpPass=<your gmail password> --to="list, of, recepients" --cc="list, of, recepients" HEAD^..HEAD to send the latest commit/patch. "--annotate" will allow you to edit message(s) before sending. Thanks. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html