From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/25674 Path: main.gmane.org!not-for-mail From: Rui Zhu Newsgroups: gmane.emacs.gnus.general Subject: How about one `gnus-summary-mark-as-ancient'? Date: 06 Oct 1999 01:10:11 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <87zoxxjtf0.fsf@cs.tu-berlin.de> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163017 15264 80.91.224.250 (21 Oct 2002 01:16:57 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:16:57 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id TAA12554 for ; Tue, 5 Oct 1999 19:16:31 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id SAB25418; Tue, 5 Oct 1999 18:15:36 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 05 Oct 1999 18:16:40 -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 SAA08044 for ; Tue, 5 Oct 1999 18:16:26 -0500 (CDT) Original-Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id TAA12524 for ; Tue, 5 Oct 1999 19:14:23 -0400 (EDT) Original-Received: from monoid (mail@130-149-145-159.dialup.cs.tu-berlin.de [130.149.145.159]) by mail.cs.tu-berlin.de (8.9.1/8.9.1) with ESMTP id BAA15990; Wed, 6 Oct 1999 01:10:14 +0200 (MET DST) Original-Received: from zhurui by monoid with local (Exim 2.05 #1 (Debian)) id 11Ydim-0000ck-00; Wed, 6 Oct 1999 01:10:12 +0200 X-Weird-Check: On Original-To: ding@gnus.org Original-Lines: 27 User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:25674 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:25674 Hi, there, When I reopened the old articles in a scored group accidentally or for test purpose, I'd like to mark it old (ancient) to prevent it being adaptive scored (I think few people will like to score on `gnus-ancient-mark', might be wrong?). Maybe I'm too paranoid, think if I've set `gnus-decay-scores' to `t'. Does some others think such a new command be handy so it can be merged into pgnus later? Or have I overlooked some features already in Gnus? The attached code is shamelessly stolen from `gnus-summary-mark-as-dormant' or `gnus-summary-mark-as-expirable', just change a little. I personally bind it to key `M O' now. ;; begin (defun gnus-summary-mark-as-ancient (n) "Mark N articles forward as ancient. If N is negative, mark backward instead. The difference between N and the actual number of articles marked is returned." (interactive "p") (gnus-summary-mark-forward n gnus-ancient-mark)) ;; end #\Rui -- Happy Gnusing!