From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?=C3=93scar_Fuentes?= Newsgroups: gmane.emacs.devel Subject: Re: How do I get bzr diff to tell me the paths? Date: Mon, 03 May 2010 14:53:25 +0200 Message-ID: <87zl0h6ta2.fsf@telefonica.net> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1272891413 6280 80.91.229.12 (3 May 2010 12:56:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 3 May 2010 12:56:53 +0000 (UTC) Cc: Lennart Borgman To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 03 14:56:52 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O8vCd-00027s-Vr for ged-emacs-devel@m.gmane.org; Mon, 03 May 2010 14:56:52 +0200 Original-Received: from localhost ([127.0.0.1]:54631 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8vCd-0007ov-K6 for ged-emacs-devel@m.gmane.org; Mon, 03 May 2010 08:56:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O8v9e-0006nu-RT for emacs-devel@gnu.org; Mon, 03 May 2010 08:53:46 -0400 Original-Received: from [140.186.70.92] (port=40120 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O8v9d-0006nJ-04 for emacs-devel@gnu.org; Mon, 03 May 2010 08:53:46 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O8v9c-00068O-2C for emacs-devel@gnu.org; Mon, 03 May 2010 08:53:44 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:48091) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O8v9b-00067z-Rq for emacs-devel@gnu.org; Mon, 03 May 2010 08:53:44 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1O8v9V-0000Nl-H0 for emacs-devel@gnu.org; Mon, 03 May 2010 14:53:37 +0200 Original-Received: from 83.40.116.128 ([83.40.116.128]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 03 May 2010 14:53:37 +0200 Original-Received: from ofv by 83.40.116.128 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 03 May 2010 14:53:37 +0200 X-Injected-Via-Gmane: http://gmane.org/ connect(): No such file or directory Original-Lines: 22 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 83.40.116.128 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:4siZXgdLZAi2mYOlE+Y27/s2PmI= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:124472 Archived-At: Lennart Borgman writes: > I do something like this when building Emacs > > cd bld\emacs\emacsw32 > bzr diff --old ..\trunk --diff-options="-b -u" > %diff-file% > > It gives me a diff, but the file names are hard to distinguish, they > look like this: > > === modified file 'lib-src/emacsclient.c' > --- lib-src/emacsclient.c 2010-04-02 03:10:33 +0000 > +++ lib-src/emacsclient.c 2010-04-07 09:54:28 +0000 > > I would rather have a little bit more of the paths. Is that possible > in some way? If you want a clearer distinction between both branches, maybe the --prefix (abbreviated as -p) option can do: bzr diff --old ..\trunk --diff-options="-b -u" -p old/:new/ > %diff-file%