From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/83784 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: How to get this debugged (pressing g fails) Date: Fri, 27 Sep 2013 07:50:10 +0900 Organization: Emacsen advocacy group Message-ID: References: <871u4cwiwu.fsf@newsguy.com> <87ioxngx9b.fsf@newsguy.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1380235859 693 80.91.229.3 (26 Sep 2013 22:50:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 26 Sep 2013 22:50:59 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M32040@lists.math.uh.edu Fri Sep 27 00:51:02 2013 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VPKOj-00010O-5P for ding-account@gmane.org; Fri, 27 Sep 2013 00:51:01 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1VPKOB-0005Lf-Ts; Thu, 26 Sep 2013 17:50:27 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1VPKOA-0005LV-Mi for ding@lists.math.uh.edu; Thu, 26 Sep 2013 17:50:26 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1VPKO9-0007Ji-09 for ding@lists.math.uh.edu; Thu, 26 Sep 2013 17:50:26 -0500 Original-Received: from mail-hampton.hostforweb.net ([216.246.15.223] helo=hampton.hostforweb.net) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1VPKO7-00032D-8B for ding@gnus.org; Fri, 27 Sep 2013 00:50:23 +0200 Original-Received: from localhost.localdomain ([127.0.0.1]:58687 helo=localhost) by hampton.hostforweb.net with smtp (Exim 4.80.1) (envelope-from ) id 1VPKNy-0049Hu-8M for ding@gnus.org; Thu, 26 Sep 2013 17:50:15 -0500 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.130008 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.8) Emacs/24.3.50 (i686-pc-cygwin) Cancel-Lock: sha1:7D/nnF+6/aGSqoQiime6evUNkmM= X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hampton.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Get-Message-Sender-Via: hampton.hostforweb.net: acl_c_authenticated_local_user: root X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:83784 Archived-At: Harry Putnam wrote: > After loading gnus-group.el and pressing 'g' I just get > the same exact debugger output: > Debugger entered: nil > gnus-group-get-new-news(nil) > call-interactively(gnus-group-get-new-news nil nil) Uhm, I have no idea of how such an taciturn message is made. > Maybe the bit from Messages buffer will help... Going to debugger > always happens after scanning nndraft active file. > from Messages buffer ,---- | Checking new news... | nnimap read 2k from imap.gmail.com | Reading active file via nnml... | Reading incoming mail from directory... | Wrote /home/reader/Mail/mail_cron_tr/30553 | Wrote /home/reader/Mail/mail_rsnap_tr/13838 | Reading incoming mail from file... | nnml: Reading incoming mail (2 new)...done | Reading active file via nnml...done | Reading active file from archive via nnfolder...done | Reading active file via nndraft...done | Gnus timed out. ^^^^^^^^^^^^^^ | Entering debugger... `---- Grep doesn't hit such a words combination in the Gnus source or the Emacs source, but Google does. For instance, bitbucket[1] shows this: (defadvice gnus-group-get-new-news (around gnus-timeout activate) "Timeout for Gnus." (with-timeout (5 (message "Gnus timed out.") (debug)) ad-do-it)) Do you have the one like that in your ~/.gnus.el file? If so, too small timeout seconds (5 in that case) may cause the problem. [1]