From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66549 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: EasyPG menu to mml.el update breaks XEmacs Date: Mon, 24 Mar 2008 20:34:21 +0900 Organization: Emacsen advocacy group Message-ID: References: <84skylebmq.fsf@incoming.verizon.net> <84k5jxdtvs.fsf@incoming.verizon.net> <84r6e5i143.fsf@incoming.verizon.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Trace: ger.gmane.org 1206358560 9726 80.91.229.12 (24 Mar 2008 11:36:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Mar 2008 11:36:00 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15035@lists.math.uh.edu Mon Mar 24 12:36:31 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 1Jdkya-0007tv-Px for ding-account@gmane.org; Mon, 24 Mar 2008 12:36:29 +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 1JdkxY-00029W-8y; Mon, 24 Mar 2008 06:35:24 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1JdkxX-00029N-4B for ding@lists.math.uh.edu; Mon, 24 Mar 2008 06:35:23 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1JdkxR-0000Pk-3e for ding@lists.math.uh.edu; Mon, 24 Mar 2008 06:35:23 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1JdkxY-0008Ae-00 for ; Mon, 24 Mar 2008 12:35:25 +0100 Original-Received: from [66.225.201.151] (port=45767 helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.68) (envelope-from ) id 1Jdkwr-0008LZ-MA for ding@gnus.org; Mon, 24 Mar 2008 06:34:42 -0500 X-Hashcash: 1:20:080324:ding@gnus.org::8js3f51x2Nhli43Q:00009HY1 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.110007 (No Gnus v0.7) XEmacs/21.4.21 (linux) Cancel-Lock: sha1:l9+BgFAkXLy1WsUGE/8wD1PpmcM= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.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-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:66549 Archived-At: >>>>> Reiner Steib wrote: > On Thu, Mar 20 2008, Dave Goldberg wrote: >> Well so much for that - easymenu is not part of a separate package. > Probably it is in the xemacs-base package. No, it's in lisp/ . But I tried the most recent No Gnus on XEmacs 21.4.21 and have no such problem. >>>>> Dave Goldberg wrote: [...] > Debugger entered--Lisp error: (error "unknown menu item keyword" :visible... > signal(error ("unknown menu item keyword" :visible ["Externalize Attach... [...] > easy-menu-add(("Attachments" ["Attach File..." mml-attach-file t] ["Attac\ > h Buffer..." mml-attach-buffer t] ["Attach External..." mml-attach-external\ > t] ["Externalize Attachments" (lambda nil ... ... ...) :visible (and ... > mml-mode() > message-mode() I don't know why, but `:visible' should not appear there because the source code has been designed so as not to use it as follows: (easy-menu-define mml-menu mml-mode-map "" [...] ,@(if (featurep 'xemacs) nil '(:visible (and (boundp 'gnus-gcc-externalize-attachments) (memq gnus-gcc-externalize-attachments '(all t nil))))) My guess is that your mml.elc was compiled by ?macs that returns nil for (featurep 'xemacs).