From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66703 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Cannot enter Summary Buffer with recent Emacs 23 and No Gnus Date: Mon, 07 Apr 2008 10:55:59 +0200 Message-ID: <87ej9iyrfk.fsf@member.fsf.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1207558593 18965 80.91.229.12 (7 Apr 2008 08:56:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 7 Apr 2008 08:56:33 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15187@lists.math.uh.edu Mon Apr 07 10:57:06 2008 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.50) id 1JinA0-0007pe-Fg for ding-account@gmane.org; Mon, 07 Apr 2008 10:57:04 +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 1Jin9B-0005u8-5q; Mon, 07 Apr 2008 03:56:13 -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 1Jin99-0005tq-SH for ding@lists.math.uh.edu; Mon, 07 Apr 2008 03:56:11 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1Jin92-0002un-0K for ding@lists.math.uh.edu; Mon, 07 Apr 2008 03:56:11 -0500 Original-Received: from out4.smtp.messagingengine.com ([66.111.4.28]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Jin9B-0002ei-00 for ; Mon, 07 Apr 2008 10:56:13 +0200 Original-Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id 14686EA690 for ; Mon, 7 Apr 2008 04:56:02 -0400 (EDT) Original-Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 07 Apr 2008 04:56:02 -0400 X-Sasl-enc: pcSe04Rz6RwnUXj27Pyv/hfT9Jh0h+7HZ2GmYAEjfKER 1207558561 Original-Received: from localhost (dslb-092-072-007-131.pools.arcor-ip.net [92.72.7.131]) by mail.messagingengine.com (Postfix) with ESMTPA id 3CC5617605 for ; Mon, 7 Apr 2008 04:56:00 -0400 (EDT) Mail-Followup-To: ding@gnus.org In-Reply-To: (Katsumi Yamaoka's message of "Mon, 07 Apr 2008 17:27:30 +0900") User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux) X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:66703 Archived-At: Katsumi Yamaoka writes: Hi Katsumi, >> I use Emacs 23 & No Gnus, both are up-to-date. When I want to enter >> the Summary buffer, I get an error signaled and with debug-on-error >> enabled, I get this backtrace: > >> Debugger entered--Lisp error: (error "Invalid size: gnus-carpal") >> signal(error ("Invalid size: gnus-carpal")) >> error("Invalid size: %s" gnus-carpal) >> gnus-configure-frame((vertical 1.0 (summary 1.0 point) (if gnus-carpal (quote > > Maybe it is due to an Emacs bug: (functionp 'if) => nil > Doesn't this do the trick? > > (or (functionp 'if) > (defadvice functionp (around workaround-bug (object) activate) > "Workaround bug." > (or ad-do-it > (setq ad-return-value (and (symbolp object) (fboundp object)))))) Indeed. Befare evaling this, (functionp 'if) return nil. After evaluation, it's t again and gnus works as it should. Thanks for the pointer. Bye, Tassilo