From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58068 Path: main.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Variable binding depth exceeds max-specpdl-size Date: Tue, 06 Jul 2004 18:16:11 +0200 Organization: Probably a good idea Sender: ding-owner@lists.math.uh.edu Message-ID: <87oemtcdro.fsf@dod.no> References: <87wu1is4jl.fsf@dod.no> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: sea.gmane.org 1089130654 13755 80.91.224.253 (6 Jul 2004 16:17:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 6 Jul 2004 16:17:34 +0000 (UTC) Original-X-From: ding-owner+M6609@lists.math.uh.edu Tue Jul 06 18:17:20 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BhsdD-0004PY-00 for ; Tue, 06 Jul 2004 18:17:19 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BhscO-0002zL-00; Tue, 06 Jul 2004 11:16:28 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BhscG-0002zD-00 for ding@lists.math.uh.edu; Tue, 06 Jul 2004 11:16:20 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BhscE-0004po-M1 for ding@lists.math.uh.edu; Tue, 06 Jul 2004 11:16:18 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by justine.libertine.org (Postfix) with ESMTP id 68D0C3A0039 for ; Tue, 6 Jul 2004 11:16:15 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BhscA-00069P-00 for ; Tue, 06 Jul 2004 18:16:14 +0200 Original-Received: from tz1wpq.cm.chello.no ([80.111.90.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Jul 2004 18:16:14 +0200 Original-Received: from sb by tz1wpq.cm.chello.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Jul 2004 18:16:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org Original-Lines: 45 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: tz1wpq.cm.chello.no Mail-Copies-To: never User-Agent: Gnus/5.110003 (No Gnus v0.3) XEmacs/21.4 (Security Through Obscurity, linux) Cancel-Lock: sha1:uAWT2ULUdynKV6KOF+bQvtx0gLc= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58068 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58068 >>>>> Kevin Greiner : > How are you at debugging lisp? Not very accomplished. > If you do the following, you should be able to debug gnus to see > what is going wrong (It's not nnagent-request-type itself but an > interaction between it, gnus-online, gnus-get-function, and > gnus-agent-get-function). > M-x load-library gnus > M-x load-library gnus-agent.el > M-x load-library gnus-int.el > M-x load-library gnus.el > M-x load-library nnagent.el > M-x debug-on-entry nnagent-request-type Ok. Now I've done this, followed by M-x gnus-slave RET and entered the problem group, and I've got a buffer with the following content: Entering: * nnagent-request-type("INBOX" nil) funcall(nnagent-request-type "INBOX" nil) (if (not (gnus-check-backend-function ... ...)) (quote unknown) (funcall (gnus-get-function gnus-command-method ...) (gnus-group-real-name group) article)) (let ((gnus-command-method ...)) (if (not ...) (quote unknown) (funcall ... ... article))) gnus-request-type("nnimap+computas:INBOX") (eq (gnus-request-type group) (quote news)) (cond ((gnus-member-of-valid ... group) t) ((not ...) nil) ((vectorp article) (eq ... ...)) ((null article) (eq ... ...)) ((< article 0) nil) (t (eq ... ...))) gnus-news-group-p("nnimap+computas:INBOX") gnus-xmas-setup-summary-toolbar() run-hooks(gnus-xmas-setup-summary-toolbar) apply(run-hooks gnus-xmas-setup-summary-toolbar) gnus-run-hooks(gnus-summary-mode-hook) gnus-summary-mode("nnimap+computas:INBOX") gnus-summary-setup-buffer("nnimap+computas:INBOX") gnus-summary-read-group-1("nnimap+computas:INBOX" nil t nil nil nil) gnus-summary-read-group("nnimap+computas:INBOX" nil t nil nil nil nil) gnus-group-read-group(nil t) gnus-group-select-group(nil) gnus-topic-select-group(nil) call-interactively(gnus-topic-select-group) Where do I go from here? What do I look for?