From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/39392 Path: main.gmane.org!not-for-mail From: Frank Schmitt Newsgroups: gmane.emacs.gnus.general Subject: [bug] Mark limit score Date: Thu, 18 Oct 2001 11:47:25 +0200 Organization: Hamme net, kren mer och nimmi Sender: owner-ding@hpc.uh.edu Message-ID: <7ktt2sb6.fsf@hschmi22.userfqdn.rz-online.de> Reply-To: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035175104 27619 80.91.224.250 (21 Oct 2002 04:38:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:38:24 +0000 (UTC) Return-Path: Original-Received: (qmail 21378 invoked from network); 18 Oct 2001 09:48:00 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 18 Oct 2001 09:48:00 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 15u9kc-0007mr-00; Thu, 18 Oct 2001 04:46:06 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 18 Oct 2001 04:45:43 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id EAA06438 for ; Thu, 18 Oct 2001 04:45:31 -0500 (CDT) Original-Received: (qmail 21356 invoked by alias); 18 Oct 2001 09:45:48 -0000 Original-Received: (qmail 21351 invoked from network); 18 Oct 2001 09:45:47 -0000 Original-Received: from quimby.gnus.org (195.204.10.139) by gnus.org with SMTP; 18 Oct 2001 09:45:47 -0000 Original-Received: (from news@localhost) by quimby.gnus.org (8.9.3/8.9.3) id LAA09532 for ding@gnus.org; Thu, 18 Oct 2001 11:45:45 +0200 (CEST) Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 49 Original-NNTP-Posting-Host: pppin105.max-hochsimmer.rz-online.net Original-X-Trace: quimby.gnus.org 1003398344 22848 212.7.169.105 (18 Oct 2001 09:45:44 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 18 Oct 2001 09:45:44 GMT User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Academic Rigor) Hamster/1.3.23.0 X-Face: "?Hv7MyYveeGDm66,O\f[l6!L*,`Q)c&3'8{9UGIM`EO8<3ASfX`8}W+u;F},&V%/y+cz(z&spQ(`CkKzCJY/@0R]aM#[W7*$(,QA-oO0f}Z2S0Y0~b5}|XDhQds[9}=t$Hf%G2c;zR%;$"~eI+dw3Gy!xKw=oduK(-, Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:39392 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:39392 --=-=-= There are currently two entries in the menu Gnus->Mark Limit which are called Score. That's already not very nice, but I think that one or both of them are broken. Try to hit /p in the summary buffer. This results for me in an error message saying "There is no diplay group parameter" (sic!). First of all we've got to get rid of this typo: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=gnus-sum.diff Content-Description: Fix typo in gnus-sum.el --- gnus-sum.el Wed Oct 17 22:14:16 2001 +++ gnus-sum2.el Thu Oct 18 09:23:32 2001 @@ -6894,7 +6894,7 @@ "Limit the summary buffer to the predicated in the `display' group parameter." (interactive) (unless gnus-newsgroup-display - (error "There is no `diplay' group parameter")) + (error "There is no `display' group parameter")) (let (articles) (dolist (number gnus-newsgroup-articles) (when (funcall gnus-newsgroup-display) --=-=-= /p calls gnus-summary-limit-to-display-predicate, but in the menu it's called score instead of display-predicate. Can anyone tell me what this function shall do? What is a/the group parameter and why don't I have one? Then: /v calls gnus-summary-limit-to-score. This function is the one I want, but it doesn't ask for the score I wish to limit the summary to. It limits the summary to articles with a score bigger or equal than gnus-summary-default-score which is quite senseless. -- One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them In the Land of Mordor where the Shadows lie. 19. Dezember 2001 --=-=-=--