From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4733 Path: main.gmane.org!not-for-mail From: Jason L Tibbitts III Newsgroups: gmane.emacs.gnus.general Subject: Re: SCORING pb in 0.26 Date: Tue, 16 Jan 1996 15:38:15 -0600 Message-ID: <9601162138.AA16873@hpc.uh.edu> References: <199601161508.QAA12304@amfou.cenatls.cena.dgac.fr> Reply-To: Jason L Tibbitts III NNTP-Posting-Host: coloc-standby.netfonds.no Content-Transfer-Encoding: 7BIT X-Trace: main.gmane.org 1035145439 30609 80.91.224.250 (20 Oct 2002 20:23:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:23:59 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by miranova.com (8.7.3/8.6.9) with SMTP id OAA28327 for ; Tue, 16 Jan 1996 14:20:40 -0800 Original-Received: from Post-Office.UH.EDU (Post-Office.UH.EDU [129.7.1.20]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Tue, 16 Jan 1996 22:38:25 +0100 Original-Received: from hpc.uh.edu (Sina.HPC.UH.EDU) by Post-Office.UH.EDU (PMDF V5.0-5 #8380) id <01I0309XX6PE00023J@Post-Office.UH.EDU> for ding@ifi.uio.no; Tue, 16 Jan 1996 15:38:17 -0600 (CST) Original-Received: from sina.hpc.uh.edu (localhost) by hpc.uh.edu (5.x/SMI-SVR4) id AA16873; Tue, 16 Jan 1996 15:38:15 -0600 In-reply-to: boubaker@cenatls.cena.dgac.fr's message of Tue, 16 Jan 1996 16:08:30 +0100 Original-To: ding@ifi.uio.no Xref: main.gmane.org gmane.emacs.gnus.general:4733 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4733 >>>>> "heddy" == boubaker writes: heddy> In summary tracing a score (V T) give me the correct informations heddy> but getting the current score (V S) allways give me 0. I think I've posted a patch for this twice now; it looks like it's still needed in 0.27 so I'll post it again. (I think this will apply cleanly to 0.27; if not, it's only three lines.) This fixes the simplify-buffer-fuzzy bug and the bug with scrolling a window with RET. - J< *** gnus.el.orig Tue Dec 19 13:16:47 1995 --- gnus.el Tue Dec 19 21:19:53 1995 *************** *** 2856,2861 **** --- 2856,2863 ---- ;; Written by Stainless Steel Rat . (defun gnus-simplify-buffer-fuzzy () (goto-char (point-min)) + (re-search-forward "^[ \t]*\\(re\\|fwd\\)[[{(^0-9]*[])}]?[:;][ \t]*" nil t) + (goto-char (match-beginning 0)) (while (or (looking-at "^[ \t]*\\(re\\|fwd\\)[[{(^0-9]*[])}]?[:;][ \t]*") (looking-at "^[[].*:[ \t].*[]]$")) *************** *** 9588,9594 **** (setq did article)) (if (or all-headers gnus-show-all-headers) (gnus-article-show-all-headers)) ! t)) (if did (gnus-article-set-window-start (cdr (assq article gnus-newsgroup-bookmarks))))))) --- 9590,9596 ---- (setq did article)) (if (or all-headers gnus-show-all-headers) (gnus-article-show-all-headers)) ! nil)) (if did (gnus-article-set-window-start (cdr (assq article gnus-newsgroup-bookmarks)))))))