From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.176.0/21 X-Spam-Status: No, score=-3.5 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MSGID_FROM_MTA_HEADER,RP_MATCHES_RCVD shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 From: Linus Torvalds Subject: Re: [WISH] Store also tag dereferences in packed-refs Date: Sun, 19 Nov 2006 13:14:34 -0800 (PST) Message-ID: References: <7vmz6oeh2k.fsf@assigned-by-dhcp.cox.net> <20061118184345.GO7201@pasky.or.cz> <7vac2oefuz.fsf@assigned-by-dhcp.cox.net> <7vbqn38831.fsf@assigned-by-dhcp.cox.net> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII NNTP-Posting-Date: Sun, 19 Nov 2006 21:14:50 +0000 (UTC) Cc: git@vger.kernel.org, Marco Costalba Return-path: Envelope-to: gcvg-git@gmane.org In-Reply-To: <7vbqn38831.fsf@assigned-by-dhcp.cox.net> X-MIMEDefang-Filter: osdl$Revision: 1.159 $ X-Scanned-By: MIMEDefang 2.36 Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: Received: from vger.kernel.org ([209.132.176.167]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gltzx-00005M-OM for gcvg-git@gmane.org; Sun, 19 Nov 2006 22:14:46 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933301AbWKSVOm (ORCPT ); Sun, 19 Nov 2006 16:14:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933316AbWKSVOm (ORCPT ); Sun, 19 Nov 2006 16:14:42 -0500 Received: from smtp.osdl.org ([65.172.181.25]:37087 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S933301AbWKSVOl (ORCPT ); Sun, 19 Nov 2006 16:14:41 -0500 Received: from shell0.pdx.osdl.net (fw.osdl.org [65.172.181.6]) by smtp.osdl.org (8.12.8/8.12.8) with ESMTP id kAJLEZix009100 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 19 Nov 2006 13:14:35 -0800 Received: from localhost (shell0.pdx.osdl.net [10.9.0.31]) by shell0.pdx.osdl.net (8.13.1/8.11.6) with ESMTP id kAJLEYpN018179; Sun, 19 Nov 2006 13:14:34 -0800 To: Junio C Hamano Sender: git-owner@vger.kernel.org On Sun, 19 Nov 2006, Junio C Hamano wrote: > > Did you do this "if (isspace(*line)) return NULL" to have > extensibility later, I wonder... No, but I try to have a policy of not accepting anything that is even slightly questionable, so it was unintentional in the details but a result of a higher-level principle.. Of course, even when I wrote it I _also_ knew that I should check everything else too (not just the first character), but I was lazy. That would have been even better - then we could have made the thing be something like []* instead.