From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24401 Path: main.gmane.org!not-for-mail From: pahe@daimi.au.dk (Peter von der =?iso-8859-1?q?Ah=E9?=) Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] Buffer local adaptive scoring Date: 20 Jul 1999 02:58:06 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035161973 8507 80.91.224.250 (21 Oct 2002 00:59:33 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:59:33 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id UAA28320 for ; Mon, 19 Jul 1999 20:59:23 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.1/8.9.1) with ESMTP id TAB11390; Mon, 19 Jul 1999 19:58:30 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 19 Jul 1999 19:59:24 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id TAA26033 for ; Mon, 19 Jul 1999 19:59:15 -0500 (CDT) Original-Received: from ufleku.daimi.au.dk (root@ufleku.daimi.au.dk [130.225.19.182]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id UAA28278 for ; Mon, 19 Jul 1999 20:58:08 -0400 (EDT) Original-Received: (from pahe@localhost) by ufleku.daimi.au.dk (8.9.3/8.8.4) id CAA09799; Tue, 20 Jul 1999 02:58:06 +0200 Original-To: ding@gnus.org X-Attribution: Ahe Original-Lines: 7 User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24401 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24401 --=-=-= Hi! I previously wrote to this list about a problem with word based adaptive scoring. This seems to be a bug, so I have made a patch: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=adaptive.patch Content-Transfer-Encoding: quoted-printable Content-Description: use buffer local gnus-use-adaptive-scoring diff -rc pgnus-0.95-vanilla/lisp/ChangeLog pgnus-0.95/lisp/ChangeLog *** pgnus-0.95-vanilla/lisp/ChangeLog Sat Jul 10 00:22:55 1999 --- pgnus-0.95/lisp/ChangeLog Tue Jul 20 02:43:26 1999 *************** *** 1,3 **** --- 1,8 ---- + Tue Jul 20 02:39:56 1999 Peter von der Ah=E9 +=20 + * gnus-sum.el (gnus-summary-exit): Allow gnus-use-adaptive-scoring + to have buffer local values. +=20 Fri Jul 9 22:21:16 1999 Lars Magne Ingebrigtsen =20=20 * gnus.el: Pterodactyl Gnus v0.95 is released. Only in pgnus-0.95/lisp: ChangeLog~ diff -rc pgnus-0.95-vanilla/lisp/gnus-sum.el pgnus-0.95/lisp/gnus-sum.el *** pgnus-0.95-vanilla/lisp/gnus-sum.el Fri Jul 9 21:16:21 1999 --- pgnus-0.95/lisp/gnus-sum.el Tue Jul 20 02:18:09 1999 *************** *** 5280,5286 **** (unless quit-config ;; Do adaptive scoring, and possibly save score files. (when gnus-newsgroup-adaptive ! (gnus-score-adaptive)) (when gnus-use-scoring (gnus-score-save))) (gnus-run-hooks 'gnus-summary-prepare-exit-hook) --- 5280,5287 ---- (unless quit-config ;; Do adaptive scoring, and possibly save score files. (when gnus-newsgroup-adaptive ! (let ((gnus-newsgroup-adaptive gnus-use-adaptive-scoring)) ! (gnus-score-adaptive))) (when gnus-use-scoring (gnus-score-save))) (gnus-run-hooks 'gnus-summary-prepare-exit-hook) --=-=-=--