From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#58516: 28.1; add option/key to rerun current diff without whitespace changes Date: Sat, 15 Oct 2022 22:09:35 +0300 Organization: LINKOV.NET Message-ID: <86k051os8g.fsf@mail.linkov.net> References: <87r0zaxvsu.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23665"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu) Cc: 58516@debbugs.gnu.org, gert To: Robert Pluim Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Oct 15 21:22:28 2022 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ojmjr-0005yi-GR for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 15 Oct 2022 21:22:27 +0200 Original-Received: from localhost ([::1]:58804 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ojmjq-0001Fl-3Y for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 15 Oct 2022 15:22:26 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:44646) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ojmjT-0001FR-2v for bug-gnu-emacs@gnu.org; Sat, 15 Oct 2022 15:22:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:43591) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ojmjS-0003gQ-Qn for bug-gnu-emacs@gnu.org; Sat, 15 Oct 2022 15:22:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ojmjS-0002HE-M6 for bug-gnu-emacs@gnu.org; Sat, 15 Oct 2022 15:22:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 15 Oct 2022 19:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 58516 X-GNU-PR-Package: emacs Original-Received: via spool by 58516-submit@debbugs.gnu.org id=B58516.16658616698651 (code B ref 58516); Sat, 15 Oct 2022 19:22:02 +0000 Original-Received: (at 58516) by debbugs.gnu.org; 15 Oct 2022 19:21:09 +0000 Original-Received: from localhost ([127.0.0.1]:42664 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ojmia-0002FO-Vs for submit@debbugs.gnu.org; Sat, 15 Oct 2022 15:21:09 -0400 Original-Received: from relay5-d.mail.gandi.net ([217.70.183.197]:44529) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ojmiY-0002EF-QB for 58516@debbugs.gnu.org; Sat, 15 Oct 2022 15:21:07 -0400 Original-Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id EA3881C0003; Sat, 15 Oct 2022 19:20:59 +0000 (UTC) In-Reply-To: <87r0zaxvsu.fsf@gmail.com> (Robert Pluim's message of "Fri, 14 Oct 2022 17:35:29 +0200") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:245584 Archived-At: > +(defun diff-ignore-whitespace-all-hunks () > + "Re-diff all the hunks, ignoring whitespace-differences." > + (interactive) > + (diff--iterate-hunks (point-max) (lambda (_ _) > + (diff-refresh-hunk t)) > + (point-min))) A question about performance: would this run the diff command for every hunk?