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 12:30:49 +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> 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 1352982682 8545 80.91.229.3 (15 Nov 2012 12:31:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Nov 2012 12:31:22 +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 13:31:32 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 1TYybO-0005Rc-0y for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 13:31:26 +0100 Original-Received: from localhost ([::1]:57845 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYybE-0002xo-6Q for geh-help-gnu-emacs@m.gmane.org; Thu, 15 Nov 2012 07:31:16 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:43357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYyb5-0002xZ-Uu for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 07:31:10 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYyb2-0005g1-SO for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 07:31:07 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:33333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYyb2-0005fv-LP for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 07:31:04 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TYyb9-0005BW-On for help-gnu-emacs@gnu.org; Thu, 15 Nov 2012 13:31:11 +0100 Original-Received: from 94-21-222-119.pool.digikabel.hu ([94.21.222.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Nov 2012 13:31:11 +0100 Original-Received: from adatgyujto by 94-21-222-119.pool.digikabel.hu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Nov 2012 13:31:11 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 29 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: 94.21.222.119 (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:87706 Archived-At: Sebastien Vauban writes: > > Last thing: can you post your complete chunk of code regarding this? I mean > with your additional check which calls the automatic highlighting of hunks > only if the diff is below a certain size? Thanks a lot... It's quite straightforward: (add-hook 'diff-mode-hook 'my-diff-stuff) (defun my-diff-stuff () (unless (or (eq this-command 'dvc-diff) ; does not work with DVC (eq this-command 'dvc-generic-refresh) (> (buffer-size) 20000)) (my-refine-all-diff-hunks))) (defun my-refine-all-diff-hunks () (interactive) (condition-case nil (save-excursion (goto-char (point-min)) (while (not (eobp)) (diff-hunk-next))) (error nil)))