Re: [PATCH v2] git-send-email: do not double-escape quotes from mutt

2016-01-04 Thread Eric Wong
Junio C Hamano wrote: > Forgot to sign-off (I could forge it, though, but anyway)? Oops :x Signed-off-by: Eric Wong -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-in

Re: [PATCH v2] git-send-email: do not double-escape quotes from mutt

2016-01-04 Thread Junio C Hamano
Eric Wong writes: > mutt saves aliases with escaped quotes in the form of: > > alias dot \"Dot U. Sir\" > > When we pass through our sanitize_address routine, > we end up with double-escaping: > >To: "\\\"Dot U. Sir\\\" > > Remove the escaping in mutt only for now, as I am not sur

[PATCH v2] git-send-email: do not double-escape quotes from mutt

2016-01-04 Thread Eric Wong
mutt saves aliases with escaped quotes in the form of: alias dot \"Dot U. Sir\" When we pass through our sanitize_address routine, we end up with double-escaping: To: "\\\"Dot U. Sir\\\" Remove the escaping in mutt only for now, as I am not sure if other mailers can do this o