From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Madhu Newsgroups: gmane.emacs.devel Subject: (gnus) Allow gnus-retrieve-headers to return headers directly Date: Sun, 24 Jan 2021 14:45:31 +0530 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14500"; mail-complaints-to="usenet@ciao.gmane.io" To: emacs-devel@gnu.org Cancel-Lock: sha1:5BQ1h2AedHsBPd81HrQ9kkcRFLs= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Jan 24 10:17:23 2021 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 1l3bWN-0003fb-8O for ged-emacs-devel@m.gmane-mx.org; Sun, 24 Jan 2021 10:17:23 +0100 Original-Received: from localhost ([::1]:44740 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l3bWM-0000No-B0 for ged-emacs-devel@m.gmane-mx.org; Sun, 24 Jan 2021 04:17:22 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:58444) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l3bUk-00089o-7i for emacs-devel@gnu.org; Sun, 24 Jan 2021 04:15:43 -0500 Original-Received: from ciao.gmane.io ([116.202.254.214]:41258) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l3bUi-0002KO-RC for emacs-devel@gnu.org; Sun, 24 Jan 2021 04:15:42 -0500 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1l3bUc-0001Vm-Nv for emacs-devel@gnu.org; Sun, 24 Jan 2021 10:15:34 +0100 X-Injected-Via-Gmane: http://gmane.org/ Received-SPF: pass client-ip=116.202.254.214; envelope-from=ged-emacs-devel@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.249, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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:263336 Archived-At: Hello, I believe gnus commit 20add1cd22f977 has introduced some unwanted behaviour. Let me describe an example: Assume I have a Group buffer line for a foreign group like: 269: nntp+news.aioe.org:alt.quotations I enter this group I arrange for it to ask me how many articles to read: How many articles: Say I enter 20, I expect to see the last 20 messages (unread and ticked). In this case I have 16 unread messages and 4 ticked articles, so I'd see a mode line in the Summary buffer like -UUU:@----F2 news:a.quotations [0] {16(+253) more} 89% L323 (Summary Plugged) --- and the Summary buffer would display only 20 lines. However all ticked and cached articles are inserted in the Summary buffer. So in this case I have some 400 Summary lines, while it should have been only 20. Can anyone confirm this regression?