From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Monaco Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Allow applying filters to summary consecutively (was: Summary by thread in rmail) Date: Mon, 10 Oct 2022 10:38:19 +0200 Message-ID: <871qrg845g.fsf@autistici.org> References: <83a664i18a.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="31869"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, rms@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Oct 10 10:49:12 2022 Return-path: Envelope-to: ged-emacs-devel@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 1ohoTH-00083b-NB for ged-emacs-devel@m.gmane-mx.org; Mon, 10 Oct 2022 10:49:12 +0200 Original-Received: from localhost ([::1]:56196 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ohoTF-0008Ka-RV for ged-emacs-devel@m.gmane-mx.org; Mon, 10 Oct 2022 04:49:09 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:60382) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ohoIv-00084Y-M7 for emacs-devel@gnu.org; Mon, 10 Oct 2022 04:38:31 -0400 Original-Received: from latitanza.investici.org ([2001:888:2000:56::19]:59029) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ohoIr-0003ji-35; Mon, 10 Oct 2022 04:38:29 -0400 Original-Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4MmC3w3lkLzGp24; Mon, 10 Oct 2022 08:38:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1665391100; bh=L7za8lDGBC82M3vCIt5rsExD2/M9D7FmtDd9FzmT7NM=; h=From:To:Cc:Subject:In-Reply-To:Date:From; b=O2qTYRtg233v+lRt5tgTtMP4ExTWk9IzBjzox55ax29uq0n+HDbsVnye+UynBwl5U h3xE8OQ7Xig2WZ2MEX+FLMsruO8SPlpXylJMZos/98bGVXvEmQ5B6LdXSNA26sbbsG Y1Ot7SWLG0b64Qp4ue9eRmBCNO7SNESJ895PaP+A= Original-Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: andrea.monaco@autistici.org) by localhost (Postfix) with ESMTPSA id 4MmC3w2HSYzGp1g; Mon, 10 Oct 2022 08:38:20 +0000 (UTC) In-Reply-To: <83a664i18a.fsf@gnu.org> (message from Eli Zaretskii on Mon, 10 Oct 2022 10:31:17 +0300) Received-SPF: pass client-ip=2001:888:2000:56::19; envelope-from=andrea.monaco@autistici.org; helo=latitanza.investici.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:297340 Archived-At: > Without some user ability to take advantage of these new options, > the feature is less useful, IMO. I agree. One possible solution is that for every rmail-summary-by-* function, let's say rmail-summary-by-topic, we add another simple command called rmail-summary-further-by-topic that looks something like this: (defun rmail-summary-further-by-topic (subject &optional whole-message) (interactive) (rmail-summary-by-topic subject whole-message t)) I agree on the other objections too. Andrea Monaco