From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general,gmane.emacs.xemacs.beta,gmane.emacs.devel Subject: No Gnus loads APEL when compiling with XEmacs Date: Tue, 27 Apr 2010 15:42:51 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1272350633 1051 80.91.229.12 (27 Apr 2010 06:43:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 27 Apr 2010 06:43:53 +0000 (UTC) Cc: xemacs-beta@xemacs.org, emacs-devel@gnu.org To: ding@gnus.org Original-X-From: ding-owner+M18051@lists.math.uh.edu Tue Apr 27 08:43:52 2010 connect(): No such file or directory 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 1O6eWN-0005Fb-MO for ding-account@gmane.org; Tue, 27 Apr 2010 08:43:51 +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 1O6eWA-0002nf-5l; Tue, 27 Apr 2010 01:43:38 -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 1O6eW8-0002nN-OA for ding@lists.math.uh.edu; Tue, 27 Apr 2010 01:43:36 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1O6eW7-0004W1-Kf for ding@lists.math.uh.edu; Tue, 27 Apr 2010 01:43:36 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1O6eW6-0003XW-00 for ; Tue, 27 Apr 2010 08:43:34 +0200 Original-Received: from localhost ([127.0.0.1]:36684) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1O6eVa-0003lf-Aj; Tue, 27 Apr 2010 01:43:02 -0500 X-Hashcash: 1:20:100427:ding@gnus.org::OlWCx6Wihfzp1lKP:00001E+9 X-Hashcash: 1:20:100427:xemacs-beta@xemacs.org::ns+07YzK2BIpov8I:0000000000000000000000000000000000000009BMF X-Hashcash: 1:20:100427:emacs-devel@gnu.org::i+AuS4UyIaAxQmm7:0000000000000000000000000000000000000000003pTD 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.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:LffrofUIesi3aaOzFHkDc1tKw/A= 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: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69660 gmane.emacs.xemacs.beta:33005 gmane.emacs.devel:124237 Archived-At: Hi, I've made a change in gnus-util.el so as not to load the APEL XEmacs package when building No Gnus for XEmacs. APEL provides some functions and variables for emulating Emacs. For instance, the emulating function `set-buffer-multibyte' was provided by poem-xm.el in the following way when `dgnushack-compile' loads `mh-e': dgnushack.el: (require 'mh-e) mh-e.el: (require 'gnus-util) gnus-util.el: (require 'rmail) rmail.el: (require 'tm-view) tm-view.el: (require 'tl-str) tl-str.el: (require 'emu) emu.el: (require 'poem) poem.el: (require 'poem-xm) And it used to hide warnings against such emulating ones that might not be available when running Gnus normally. Now you will see many warnings when building No Gnus for XEmacs. Some are just warnings but others are serious. For example, now we can see that `binhex-decode-region-internal', `dns-read-string-name', `gnus-article-browse-html-parts', `gnus-read-ephemeral-gmane-group', `yenc-decode-region', etc. will not work for XEmacs unless a user loads poem.el. I'd like to fix them one by one hereafter. Regards,