From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Newsgroups: gmane.emacs.help Subject: Re: Diff could also show the changes within lines Date: Thu, 15 Nov 2012 16:32:59 +0000 (UTC) Message-ID: References: <87txu9arc8.fsf@gmail.com> <80d2zlvnos.fsf@somewhere.org> <80vcd8l0h4.fsf@somewhere.org> <80zk2j3kkf.fsf@somewhere.org> <80obizp4fv.fsf@somewhere.org> <808va3p0ia.fsf@somewhere.org> <80d2zej3kd.fsf@somewhere.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1352997203 13407 80.91.229.3 (15 Nov 2012 16:33:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Nov 2012 16:33:23 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 15 17:33:34 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TZ2Nh-0001lW-K6 for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 17:33:33 +0100 Original-Received: from localhost ([::1]:37308 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ2NX-0005bg-RH for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 11:33:23 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:39076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ2NQ-0005bW-Nl for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 11:33:19 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TZ2NN-0003AQ-LL for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 11:33:16 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:53489) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZ2NN-0003AD-FC for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 11:33:13 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TZ2NU-0001W8-BI for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 17:33:20 +0100 Original-Received: from 178-164-187-195.pool.digikabel.hu ([178.164.187.195]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Nov 2012 17:33:20 +0100 Original-Received: from adatgyujto by 178-164-187-195.pool.digikabel.hu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Nov 2012 17:33:20 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 22 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 178.164.187.195 (Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.10) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:87708 Archived-At: Sebastien Vauban writes: > > FYI, have a look at http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12894. > That explains it. I'm on Emacs 24.1 and it does not have this scheduling code, so that's why it works for me. I didn't think they changed this recently. Anyway, you can try calling diff-refine-hunk explicitly after diff-hunk-next then: (condition-case nil (save-excursion (goto-char (point-min)) (while (not (eobp)) (diff-hunk-next) (diff-refine-hunk))) (error nil))) I can't try it, because I use 24.1, but it may work.