From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, PDS_BRAND_SUBJ_NAKED_TO,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 16024 invoked from network); 27 Jan 2021 09:58:00 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 27 Jan 2021 09:58:00 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1l4haF-004Q70-8P for ml@inbox.vuxu.org; Wed, 27 Jan 2021 03:57:55 -0600 Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.94) (envelope-from ) id 1l4haE-008pfx-Nd for ml@inbox.vuxu.org; Wed, 27 Jan 2021 03:57:54 -0600 Received: from mx2.math.uh.edu ([129.7.128.33]) by lists1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1l4haC-008pfp-AY for ding@lists.math.uh.edu; Wed, 27 Jan 2021 03:57:52 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx2.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1l4haA-004LgW-H2 for ding@lists.math.uh.edu; Wed, 27 Jan 2021 03:57:51 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:Mime-Version:Message-ID :Date:Subject:From:To:Sender:Reply-To:Cc:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=zjNPhXmmfl2o0GQAE0psSnXUi+1ZWYmzE8u4bbg+NDk=; b=LJvmWAVEbFl3XV5JhuEopzgwsr VCPsG3qULYF01jBcRNqciqT3fGvbz9KFo7HtGxnvu9h3XJA9GGZcTklqzbC74GelLcCI60RrL15Qp IKULWbXUI8A5Npps83GEVVhyDueefutZ0IL9F4WVUC4JwJdOsQy15Dkm94dRfl2ENmI8=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l4ha0-0005Rl-3N for ding@gnus.org; Wed, 27 Jan 2021 10:57:45 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1l4hZy-0009Nl-Oh for ding@gnus.org; Wed, 27 Jan 2021 10:57:38 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: Juan =?utf-8?Q?Jos=C3=A9_Garc=C3=ADa-Ripoll?= Subject: gnus-summary-catchup-and-exit does not update marks Date: Wed, 27 Jan 2021 10:57:32 +0100 Message-ID: <86bldavh0z.fsf@csic.es> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (windows-nt) Cancel-Lock: sha1:cmLl0PIqIJgvbmjWqXfiMpjxanM= List-ID: Precedence: bulk Hi, I have been debugging a problem with nnmaild, my Maildir backend (https://github.com/juanjosegarciaripoll/gnus-nnmaild), which is that 'c' did not mark all articles as read. Debugging the code un Gnus I found that gnus-summary-catchup-and-exit only updates the list of unread articles (gnus-newsgroup-unreads), as well as the list of dormant, marked and spam articles. This happens because this function calls gnus-summary-catchup with the argument not-mark set to 'fast. (defun gnus-summary-catchup-and-exit (&optional all quietly) "Mark all unread articles in this group as read, then exit. If prefix argument ALL is non-nil, all articles are marked as read. If QUIETLY is non-nil, no questions will be asked." (interactive "P") (when (gnus-summary-catchup all quietly nil 'fast) ... This is not consistent with the command gnus-summary-catchup followed by exit. Is this intended? Cheers, -- Juan José García Ripoll http://juanjose.garciaripoll.com http://quinfog.hbar.es