From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58691 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: Sat, 02 Oct 2004 00:48:05 +0200 Organization: Probably a good idea Sender: ding-owner@lists.math.uh.edu Message-ID: <877jqaukbe.fsf@dod.no> References: <87wu1is4jl.fsf@dod.no> <87oemtcdro.fsf@dod.no> <87fz84dirv.fsf@dod.no> <87wtyaupbx.fsf@dod.no> <87fz4yulpp.fsf@dod.no> <87brfmukru.fsf@dod.no> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: sea.gmane.org 1096670917 23659 80.91.229.6 (1 Oct 2004 22:48:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 1 Oct 2004 22:48:37 +0000 (UTC) Original-X-From: ding-owner+M7229@lists.math.uh.edu Sat Oct 02 00:48:29 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CDWCS-0001Vy-00 for ; Sat, 02 Oct 2004 00:48:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1CDWCG-0007tH-00; Fri, 01 Oct 2004 17:48:16 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CDWCC-0007tC-00 for ding@lists.math.uh.edu; Fri, 01 Oct 2004 17:48:12 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CDWCC-0007ba-Mz for ding@lists.math.uh.edu; Fri, 01 Oct 2004 17:48:12 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.229.2]) by justine.libertine.org (Postfix) with ESMTP id A93D23A0027 for ; Fri, 1 Oct 2004 17:48:09 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CDWC8-0005ht-00 for ; Sat, 02 Oct 2004 00:48:08 +0200 Original-Received: from cm-80.111.90.110.chello.no ([80.111.90.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 02 Oct 2004 00:48:08 +0200 Original-Received: from sb by cm-80.111.90.110.chello.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 02 Oct 2004 00:48:08 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org Original-Lines: 32 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: cm-80.111.90.110.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:jrpQB3YZ0vhviUHptAh8sZf5Vkg= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58691 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58691 >>>>> Steinar Bang : > It's hard to debug into the new nnagent-request-type, though, > because I have to step throught a lot of debug stuff, that's > probably releated to what made the debugger break there in the first > place. Bug if I do M-x cancel-debug-on-entry RET nnagent-request-type RET after ending up in the debugger, I can step into nnagent-request-type again, and it looks a lot like infinite recursion. A bit of stack trace: * 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-plugged t)) (if (not ...) (quote unknown) (funcall ... ... article))) * (if (stringp article) nil (let (...) (if ... ... ...))) * (unless (stringp article) (let (...) (if ... ... ...))) * 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-plugged t)) (if (not ...) (quote unknown) (funcall ... ... article))) * (if (stringp article) nil (let (...) (if ... ... ...))) * (unless (stringp article) (let (...) (if ... ... ...))) * 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-plugged t)) (if (not ...) (quote unknown) (funcall ... ... article))) * (if (stringp article) nil (let (...) (if ... ... ...))) * (unless (stringp article) (let (...) (if ... ... ...))) * nnagent-request-type("INBOX" nil)