From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15933 Path: main.gmane.org!not-for-mail From: Mike McEwan Newsgroups: gmane.emacs.gnus.general Subject: Bug in `gnus-summary-increase-score'? Date: 09 Aug 1998 22:37:34 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035154887 24900 80.91.224.250 (20 Oct 2002 23:01:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:01:27 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.1/8.9.1) with ESMTP id PAA22206 for ; Sun, 9 Aug 1998 15:07:53 -0700 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id SAA14017 for ; Sun, 9 Aug 1998 18:03:13 -0400 Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id QAS23768; Sun, 9 Aug 1998 16:24:49 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 09 Aug 1998 16:40:55 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id QAA08949 for ; Sun, 9 Aug 1998 16:40:22 -0500 (CDT) Original-Received: from post.mail.demon.net (post-12.mail.demon.net [194.217.242.41]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id RAA13680 for ; Sun, 9 Aug 1998 17:39:33 -0400 (EDT) Original-Received: from (lotusland.demon.co.uk) [158.152.62.156] by post.mail.demon.net with smtp (Exim 1.82 #2) id 0z5dBa-0005zk-00; Sun, 9 Aug 1998 21:39:31 +0000 Original-Received: from mike by lotusland.demon.co.uk with local (Exim 2.02 #1) id 0z5dBZ-0000eH-00 for ding@gnus.org; Sun, 9 Aug 1998 22:39:29 +0100 Original-To: ding@gnus.org X-Mailer: Gnus v5.6.30/XEmacs 20.4 - "Emerald" Original-Lines: 25 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:15933 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:15933 Having just installed 5.6.30, I cannot now conduct a `I T' to increase the score of a thread. Or rather, I can, but I then cannot re-select the group in question - gnus just gets stuck in a loop with `Scoring...' in the mini-buffer. An `ADAPT' score file is also created??? I've tracked the problem down to the following in 5.6.30: --- gnus/lisp/gnus-score.el.orig Sat Aug 8 18:43:41 1998 +++ gnus/lisp/gnus-score.el Sun Aug 9 18:11:32 1998 @@ -550,7 +550,7 @@ (gnus-score-insert-help "Match on header" char-to-header 1))) (gnus-score-kill-help-buffer) - (unless (setq entry (assq (downcase hchar) char-to-header)) + (unless (setq entry (assq hchar char-to-header)) (if mimic (error "%c %c" prefix hchar) (error "Illegal header type"))) Reverting this patch, having removed the `ADAPT' file and score file entry previously created, resumes normal behaviour. I just don't know why yet - any ideas? -- Mike.