From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/16672 Path: main.gmane.org!not-for-mail From: (Jari Aalto+list.ding) Newsgroups: gmane.emacs.gnus.general Subject: Re: Suggestion: to problem nndraft "Can't select group" Date: 03 Sep 1998 20:31:07 +0300 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035155506 29229 80.91.224.250 (20 Oct 2002 23:11:46 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:11:46 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA00672 for ; Thu, 3 Sep 1998 13:31:46 -0400 (EDT) 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 MAF06732; Thu, 3 Sep 1998 12:02:52 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 03 Sep 1998 12:31:39 -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 MAA29944 for ; Thu, 3 Sep 1998 12:31:26 -0500 (CDT) Original-Received: from axl01it.ntc.nokia.com (axl01it.ntc.nokia.com [131.228.118.232]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA00666 for ; Thu, 3 Sep 1998 13:31:16 -0400 (EDT) Original-Received: from zeus.tele.nokia.fi (zeus.tele.nokia.fi [131.228.134.50]) by axl01it.ntc.nokia.com (8.8.5/8.6.9) with SMTP id UAA02622 for ; Thu, 3 Sep 1998 20:30:52 +0300 (EET DST) Original-Received: from tre.tele.nokia.fi (styx.ntc.nokia.com [131.228.169.57]) by zeus.tele.nokia.fi (8.6.4/8.6.4) with ESMTP id UAA07021 for ; Thu, 3 Sep 1998 20:35:27 +0300 Original-Received: by tre.tele.nokia.fi (1.39.111.2/16.2) id AA083133867; Thu, 3 Sep 1998 20:31:07 +0300 Original-To: Ding mailing list X-Info: Emacs tiny tools: ftp://cs.uta.fi/pub/ssjaaa/ File server: Send subject 'send help' to In-Reply-To: dsg@mitre.org's message of "03 Sep 1998 13:10:56 -0400" Original-Lines: 53 X-Mailer: Pterodactyl Gnus v0.13/Emacs 19.34 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:16672 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:16672 | 1998-09-03 dsg@mitre.org (David S. Goldberg) list.ding | I have no idea what you may be doing wrong, but (display . all) isn't | it. I do not have (display . all) set for my nndraft group and have | no trouble with it whatsoever. I even tested it by saving this | message with message-dont-send, going into the draft group (there it | was as expected), then doing a catchup and selecting it again from the | *Group* buffer. I got into the group as expected and ran D e and in a | couple of seconds I will send it out. I can't be absolutely positive what was the problem, because I ran Edebug 2 hours and added lot of test code inside functions it it used. All just suddendly working after I added (display . all), because then it triggered following function to find my lost nndraft afticles. I think adding that parameter by default in nndraft is goo idea to prevent any similar event happening. My situation was different than yours: I hadn't have working nndraft for months, so I couldn't just "remove" or "add" that display property to see if it changed anything. (defun gnus-articles-to-read (group &optional read-all) ;; Find out what articles the user wants to read. (let* ((articles ;; Select all articles if `read-all' is non-nil, or if there ;; are no unread articles. (if (or read-all (and (zerop (length gnus-newsgroup-marked)) (zerop (length gnus-newsgroup-unreads))) (eq (gnus-group-find-parameter group 'display) 'all)) | | This Side note: (do not be concerned, I'll investigate this first) I'm wondering why nndraft-request-group keeps at value 'ignore, due to statement: (eval-when-compile (require 'cl) ;; This is just to shut up the byte-compiler. (fset 'nndraft-request-group 'ignore)) While the nnoo-import at the end of nndraft.el should wipe it away. It doesn't do that for me for some very mysterious reason. I'll take a look at it next time I boot Gnus down and up. jari