From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80930 Path: news.gmane.org!not-for-mail From: Antoine Levitt Newsgroups: gmane.emacs.gnus.general Subject: Re: Cannot read partial active file from nntp server. Date: Mon, 23 Jan 2012 16:02:00 +0100 Message-ID: <87r4yqh387.fsf@gmail.com> References: <8762g2ahse.fsf@tsdh.uni-koblenz.de> <877h0iiw55.fsf@gmail.com> <87r4yq8qan.fsf@tsdh.uni-koblenz.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1327331001 18144 80.91.229.12 (23 Jan 2012 15:03:21 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 23 Jan 2012 15:03:21 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29212@lists.math.uh.edu Mon Jan 23 16:03:14 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RpLQO-0001bC-Ks for ding-account@gmane.org; Mon, 23 Jan 2012 16:03:12 +0100 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 1RpLPb-0001EX-Bs; Mon, 23 Jan 2012 09:02:23 -0600 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 1RpLPY-0001EN-Tn for ding@lists.math.uh.edu; Mon, 23 Jan 2012 09:02:20 -0600 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 1RpLPX-00053c-OR for ding@lists.math.uh.edu; Mon, 23 Jan 2012 09:02:20 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RpLPU-0006Y0-Ta for ding@gnus.org; Mon, 23 Jan 2012 16:02:16 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RpLPU-0001Ae-PQ for ding@gnus.org; Mon, 23 Jan 2012 16:02:16 +0100 Original-Received: from portable44.ceremade.dauphine.fr ([193.48.71.44]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jan 2012 16:02:16 +0100 Original-Received: from antoine.levitt by portable44.ceremade.dauphine.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jan 2012 16:02:16 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 15 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: portable44.ceremade.dauphine.fr Mail-Copies-To: never User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) X-Spam-Score: -4.0 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80930 Archived-At: 23/01/12 15:08, Tassilo Horn > Indeed, it seems to be caused by interrupting a frozen > `gnus-group-get-new-news' call using C-g. I've tried to get a backtrace > using `toggle-debug-on-error', but that doesn't put me in the debugger. > > Bye, > Tassilo I use 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))