From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junio C Hamano Subject: Re: email address handling Date: Sat, 02 Aug 2008 09:40:51 -0700 Message-ID: <7vabfvpdyk.fsf@gitster.siamese.dyndns.org> References: <20080801131127.20b3acfd.akpm@linux-foundation.org> <20080801132415.0b0314e4.akpm@linux-foundation.org> <20080801135421.5ca0f6af.akpm@linux-foundation.org> <7vvdykqub6.fsf@gitster.siamese.dyndns.org> <20080801145804.85041bbd.akpm@linux-foundation.org> <20080801221539.GA8617@mit.edu> <20080801152720.56dbff09.akpm@linux-foundation.org> <20080801154902.c60717e5.akpm@linux-foundation.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Johannes Schindelin , Andrew Morton , Theodore Tso , git@vger.kernel.org To: Linus Torvalds X-From: git-owner@vger.kernel.org Sat Aug 02 18:42:07 2008 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1KPKBB-0004br-U3 for gcvg-git-2@gmane.org; Sat, 02 Aug 2008 18:42:06 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755453AbYHBQlD (ORCPT ); Sat, 2 Aug 2008 12:41:03 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755406AbYHBQlC (ORCPT ); Sat, 2 Aug 2008 12:41:02 -0400 Received: from a-sasl-fastnet.sasl.smtp.pobox.com ([207.106.133.19]:65116 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754740AbYHBQlA (ORCPT ); Sat, 2 Aug 2008 12:41:00 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id A63214C902; Sat, 2 Aug 2008 12:40:59 -0400 (EDT) Received: from pobox.com (ip68-225-240-211.oc.oc.cox.net [68.225.240.211]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTPSA id ECF4E4C901; Sat, 2 Aug 2008 12:40:53 -0400 (EDT) In-Reply-To: (Linus Torvalds's message of "Sat, 2 Aug 2008 09:20:17 -0700 (PDT)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-Pobox-Relay-ID: C97A3022-60B1-11DD-9142-CE28B26B55AE-77302942!a-sasl-fastnet.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Linus Torvalds writes: > On Sat, 2 Aug 2008, Johannes Schindelin wrote: >> >> Ah, there lies the rub (you forgot that the original complaint was about >> a comma, and pretty=email does not handle those): > > Indeed. > > I wonder where that is_rfc2047_special() function came from. The list of > "special" characters is totally bogus. This function is about quoting inside dq pair, so the function does not look at the set you listed. It is about quoting non-ascii chars using the ?charset?Q? or ?charset?B? notation. If we want to use double quotes that should be done elsewhere, not in that function.