From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: A few issues with thumbs.el Date: Thu, 26 May 2005 02:48:09 +0200 Message-ID: References: Reply-To: Juanma Barranquero NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1117068788 23037 80.91.229.2 (26 May 2005 00:53:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 26 May 2005 00:53:08 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 26 02:53:07 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Db6cK-0006JQ-Sz for ged-emacs-devel@m.gmane.org; Thu, 26 May 2005 02:52:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Db6gI-0004Cd-8F for ged-emacs-devel@m.gmane.org; Wed, 25 May 2005 20:57:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Db6ao-0003U0-Vp for emacs-devel@gnu.org; Wed, 25 May 2005 20:51:23 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Db6ai-0003RG-Du for emacs-devel@gnu.org; Wed, 25 May 2005 20:51:19 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Db6ai-0003Q7-5i for emacs-devel@gnu.org; Wed, 25 May 2005 20:51:16 -0400 Original-Received: from [64.233.184.194] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Db6YE-0002Qc-2f for emacs-devel@gnu.org; Wed, 25 May 2005 20:48:42 -0400 Original-Received: by wproxy.gmail.com with SMTP id 50so372094wri for ; Wed, 25 May 2005 17:48:10 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=brrGrbX+AXNatjF4W3jU4KTDB2pvqzJf7Mb7wucgDZCXiz6B8daFJgvgk+HIkPXnHZI3L954hrNyHnTWEK53nLzS4Ziq1vpmCiyDsHVRbuBBbkZUnE8CGDT0TV8zGe+ysRpJvSbNoib9qvY59PaviXHx52IVL6izCb/jCZ2IenQ= Original-Received: by 10.54.51.9 with SMTP id y9mr657446wry; Wed, 25 May 2005 17:48:09 -0700 (PDT) Original-Received: by 10.54.82.6 with HTTP; Wed, 25 May 2005 17:48:09 -0700 (PDT) Original-To: emacs-devel@gnu.org In-Reply-To: Content-Disposition: inline X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:37659 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37659 Another issue I forgot: On Windows, thumbs-conversion-program is initialized to "convert.exe". Trouble is, there's already a convert.exe on the path, on %windir%. I thought about using (on the windows part) something like (let ((exe (executable-find "convert.exe"))) (and exe (string-match "ImageMagick" (shell-command-to-string (concat exe " -version= "))) exe)) Is that appropriate for a defcustom initialization, or it is way too much work and should be left to the user? --=20 /L/e/k/t/u