From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/16275 Path: main.gmane.org!not-for-mail From: (Jari Aalto+list.ding) Newsgroups: gmane.emacs.gnus.general Subject: Re: 5.6.38 Can't read drafts server? Date: 25 Aug 1998 16:05:53 +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 1035155169 26762 80.91.224.250 (20 Oct 2002 23:06:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:06:09 +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 GAA17694 for ; Tue, 25 Aug 1998 06:08:03 -0700 Original-Received: from sina.hpc.uh.edu (Sina.HPC.UH.EDU [129.7.3.5]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id JAA12065 for ; Tue, 25 Aug 1998 09:09:18 -0400 Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id IAK10379; Tue, 25 Aug 1998 08:07:54 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 25 Aug 1998 08:06:11 -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 IAA10366 for ; Tue, 25 Aug 1998 08:06:02 -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 JAA20021 for ; Tue, 25 Aug 1998 09:05:58 -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 QAA11580 for ; Tue, 25 Aug 1998 16:05:41 +0300 (EET DST) Original-Received: from creator.tele.nokia.fi (creator.tele.nokia.fi [131.228.48.178]) by zeus.tele.nokia.fi (8.6.4/8.6.4) with ESMTP id QAA16703 for ; Tue, 25 Aug 1998 16:09:42 +0300 Original-Received: (from jaalto@localhost) by creator.tele.nokia.fi (8.7.5/8.7.1) id QAA27683; Tue, 25 Aug 1998 16:05:54 +0300 (EETDST) Original-To: Ding mailing list In-Reply-To: Lars Magne Ingebrigtsen's message of "25 Aug 1998 07:55:31 +0200" Original-Lines: 53 X-Mailer: Gnus v5.6.38/Emacs 19.34 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:16275 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:16275 | 1998-08-25 Lars Magne Ingebrigtsen list.ding | (Jari Aalto+list.ding) writes: | | > | nnmh-request-group, for instance. | > | > I didn't reach that far, I was able to go to point | > gnus-request-group, but then it called function | > nndraft-request-group which I couldn't find anywhere to instrument | > it for Edebug. | | `nnmh-request-group' is the function to instrument. I did that, but It never stops there...When I instrumented the nnmh-request-group' it said: Mark saved where search started [2 times] Edebug: edebug-anon0 Edebug: nnmh-request-group I'm currently stuck at this point: (defun gnus-request-group (group &optional dont-check gnus-command-method) "Request GROUP. If DONT-CHECK, no information is required." (let ((gnus-command-method (or gnus-command-method (inline (gnus-find-method-for-group group))))) (when (stringp gnus-command-method) (setq gnus-command-method (inline (gnus-server-to-method gnus-command-method)))) => (funcall (inline (gnus-get-function gnus-command-method 'request-group)) (gnus-group-real-name group) (nth 1 gnus-command-method) dont-check))) (gnus-get-function gnus-command-method (quote request-group)) --> nndraft-request-group The "i" is hopeless here, since I get Signaling: (error "Don't know where gnus-get-function is defined") apply(debug error(error "Don't know where gnus-get-function is defined")) edebug(error (error "Don't know where gnus-get-function is defined")) signal(error ("Don't know where gnus-get-function is defined")) The call seems to be: (nndraft-request-group "drafts" "" nil) And I called it directly to find out it it would trigger edebug and nnmh-request-group...no joy. How do I get past and land to nnmh-request-group? jari