From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57665 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus 5.10.6: attempts to use w3m even when there isn't any Date: Mon, 24 May 2004 07:36:49 +0900 Organization: Emacsen advocacy group Sender: ding-owner@lists.math.uh.edu Message-ID: References: <871xlaeqng.fsf@tc-1-100.kawasaki.gol.ne.jp> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1085351836 25128 80.91.224.253 (23 May 2004 22:37:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 23 May 2004 22:37:16 +0000 (UTC) Original-X-From: ding-owner+M6205@lists.math.uh.edu Mon May 24 00:37:09 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BS1af-0004gp-00 for ; Mon, 24 May 2004 00:37:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BS1aU-0006MU-00; Sun, 23 May 2004 17:36:58 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BS1aP-0006MP-00 for ding@lists.math.uh.edu; Sun, 23 May 2004 17:36:53 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BS1aP-00015c-6l for ding@lists.math.uh.edu; Sun, 23 May 2004 17:36:53 -0500 Original-Received: from washington.hostforweb.net (washington.hostforweb.net [69.61.11.2]) by justine.libertine.org (Postfix) with ESMTP id A12473A003B for ; Sun, 23 May 2004 17:36:52 -0500 (CDT) Original-Received: from yamaoka by washington.hostforweb.net with local (Exim 4.34) id 1BS1aS-0004gW-Rt for ding@gnus.org; Sun, 23 May 2004 18:36:57 -0400 Original-To: ding@gnus.org 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.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:8wOWULylPtJjzkWugq5PIlugBTc= X-Hashcash: 0:040523:ding@gnus.org:25dbc308e9dd88af X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [32041 32041] / [47 12] X-AntiAbuse: Sender Address Domain - washington.hostforweb.net X-Source: X-Source-Args: X-Source-Dir: Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57665 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57665 >>>>> In >>>>> Lars Magne Ingebrigtsen wrote: > Miles Bader writes: >> w3m-command is nil >> >> [Especially silly considering most people probably don't have w3m installed] > [...] >> require(w3m) >> mm-setup-w3m() >> mm-inline-text-html-render-with-w3m((#> ("text/html" (charset . "us-ascii")) 7bit nil nil nil nil nil)) > This should only happen if `mm-inline-text-html-renderer' or > `mm-text-html-renderer' are set to > `mm-inline-text-html-render-with-w3m', which shouldn't happen unless > one has set those to that. I think. :-) It is hard to imagine there's emacs-w3m installed without w3m. But that's okay. Does the following patch help? --- mm-decode.el~ 2004-05-20 06:13:13 +0000 +++ mm-decode.el 2004-05-23 22:34:46 +0000 @@ -99,7 +99,7 @@ (defcustom mm-text-html-renderer (cond ((locate-library "w3") 'w3) - ((locate-library "w3m") 'w3m) + ((and (locate-library "w3m") (executable-find "w3m") 'w3m)) ((executable-find "w3m") 'w3m-standalone) ((executable-find "links") 'links) ((executable-find "lynx") 'lynx) -- Katsumi Yamaoka