From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/66939 Path: news.gmane.org!not-for-mail From: Reiner Steib Newsgroups: gmane.emacs.gnus.general Subject: Re: Searching for program: no such file or directory, w3m Date: Mon, 12 May 2008 21:29:26 +0200 Message-ID: References: Reply-To: Reiner Steib NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1210620708 10198 80.91.229.12 (12 May 2008 19:31:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 12 May 2008 19:31:48 +0000 (UTC) Cc: ding@gnus.org To: ofv@wanadoo.es (=?iso-8859-1?Q?=D3scar?= Fuentes) Original-X-From: ding-owner+M15416@lists.math.uh.edu Mon May 12 21:32:25 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 1Jvdkq-0006hW-OA for ding-account@gmane.org; Mon, 12 May 2008 21:32:13 +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 1Jvdj5-0002MH-OK; Mon, 12 May 2008 14:30:23 -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 1Jvdj4-0002Lv-5D for ding@lists.math.uh.edu; Mon, 12 May 2008 14:30:22 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1Jvdix-0007rP-Ss for ding@lists.math.uh.edu; Mon, 12 May 2008 14:30:22 -0500 Original-Received: from mail.uni-ulm.de ([134.60.1.11]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1JvdjB-0005Xk-00 for ; Mon, 12 May 2008 21:30:29 +0200 Original-Received: from bridgekeeper.physik.uni-ulm.de (bridgekeeper.physik.uni-ulm.de [134.60.41.37]) by mail.uni-ulm.de (8.14.2/8.14.2) with ESMTP id m4CJUCSB008142; Mon, 12 May 2008 21:30:13 +0200 (MEST) Original-Received: from localhost (bridgekeeper.physik.uni-ulm.de [134.60.41.37]) by bridgekeeper.physik.uni-ulm.de (Postfix) with ESMTP id 9AAB1130D1; Mon, 12 May 2008 21:30:12 +0200 (CEST) X-Face: .*T0'iU(sujq_j9\J>-d4fg;N/1++U#U$_5ii6k.=|"-n'?5O:Hyz&wi'-!I~,}7~GgT=0S /&-R5sbkNy5+Xo1y{Tw2KKxi@Xh"g@]Qc|.U<*]WDd)qvGowFDvfU1F]{EDho:7P0@|oOD=Bc{K4?> WP68K[Mx:}=`ZT'6g4'f+g?;`vri2!)xGy}3:=l'(/Cea0l4lo^H5#@/Z3ev Mail-Followup-To: =?iso-8859-1?Q?=D3scar?= Fuentes , ding@gnus.org In-Reply-To: (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Mon, 12 May 2008 17:22:53 +0200") User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.2.50 (gnu/linux) X-DCC-HP_X86_64_8CPU-Metrics: poseidon 1245; Body=2 Fuz1=2 Fuz2=2 X-Virus-Scanned: by amavisd-new X-MIME-Autoconverted: from 8bit to quoted-printable by mail.uni-ulm.de id m4CJUCSB008142 X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:66939 Archived-At: On Mon, May 12 2008, =D3scar Fuentes wrote: > While displaying some e-mail messages, gnus shows > > Searching for program: no such file or directory, w3m > > and this on the *Messages* buffer: > > mm-inline-text-html-render-with-w3m-standalone: Searching for program: > no such file or directory, w3m > > I'm using Gnus 5.13 on Emacs GNU Emacs 23.0.60.1 (i386-mingw-nt5.0.2195= ) > of 2008-03-21 > > I have no references to w3m on .emacs or .gnus.el. > > This only happens after some time of using Emacs. If I start a new Emac= s > session, Gnus shows the message correctly. I don't have an idea why it happens only sometimes, unless your Emacs can find the w3m binary when loading mm-decode, but not later when displaying the article. On 2008-03-02, I've changed `mm-text-html-renderer' to prefer w3m if available: * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3. Fall back to nil, instead of html2text. This was synced to Emacs on 2008-03-10, so your Emacs also contains it: (defcustom mm-text-html-renderer (cond ((executable-find "w3m") (if (locate-library "w3m") 'w3m 'w3m-standalone)) ((executable-find "links") 'links) ((executable-find "lynx") 'lynx) ((locate-library "w3") 'w3) ((locate-library "html2text") 'html2text) (t nil)) [...] Maybe showing us the backtrace might help. Set `debug-on-error' to t (M-x toggle-debug-on-error RET), repeat the error and post the backtrace. Bye, Reiner. --=20 ,,, (o o) ---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/