From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: ido's flex matching in org-refile Date: Sun, 16 Nov 2008 17:07:31 -0500 Message-ID: <87bpwfpboc.fsf@gollum.intra.norang.ca> References: <20524da70811091811r51fcbfdaue35fa583e35ec361@mail.gmail.com> <77A67AB4-322B-428A-BB70-CD615E32FC65@uva.nl> <87myfzph7v.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L1pmR-00064i-1O for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 17:07:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L1pmP-00062u-QE for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 17:07:42 -0500 Received: from [199.232.76.173] (port=36867 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1pmP-00062o-NR for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 17:07:41 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:61095) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L1pmP-00081C-I5 for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 17:07:41 -0500 In-Reply-To: (Carsten Dominik's message of "Sun\, 16 Nov 2008 21\:26\:47 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org Carsten Dominik writes: > Hi Eric, this is very nice, but the changes also contain a whole > mountain of changes where only the initial whitespace of lines is > changed. This makes it very har to see what really is the core of > this patch and makes me hesitate to apply it. > > Can this be avoided somehow? Bernt? Carsten, >From your repository you can do this: $ git fetch git://github.com/eschulte/org-mode master This pulls the commits from Eric's master branch and points your FETCH_HEAD at it. $ git diff master FETCH_HEAD shows the differences between your master and all commits to FETCH_HEAD (basically the same thing when you just show that commit). In this case it's the same as git show FETCH_HEAD since there is only one commit. $ git diff -w master FETCH_HEAD will ignore whitespace changes. This is much easier to review. -Bernt