From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: master ca47390: image-dired: Report when a necessary executable is not found Date: Sun, 04 Sep 2016 12:41:26 -0400 Message-ID: References: <20160904134431.30494.94659@vcs.savannah.gnu.org> <20160904134431.7513F220140@vcs.savannah.gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1473007341 14219 195.159.176.226 (4 Sep 2016 16:42:21 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 4 Sep 2016 16:42:21 +0000 (UTC) User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) Cc: Tino Calancha To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 04 18:42:17 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bgaUi-0002AG-72 for ged-emacs-devel@m.gmane.org; Sun, 04 Sep 2016 18:42:08 +0200 Original-Received: from localhost ([::1]:50547 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgaUf-0005OX-MZ for ged-emacs-devel@m.gmane.org; Sun, 04 Sep 2016 12:42:05 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgaU6-0005OD-OY for emacs-devel@gnu.org; Sun, 04 Sep 2016 12:41:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgaU5-00038K-19 for emacs-devel@gnu.org; Sun, 04 Sep 2016 12:41:29 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:55418) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgaU4-00038G-Ty; Sun, 04 Sep 2016 12:41:28 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1bgaU2-0005hI-M7; Sun, 04 Sep 2016 12:41:26 -0400 X-Spook: Jyllandsposten Emergency dedicated denial of service X-Ran: AQ5:~(%}y4?Hq6IBZu-lA-A/]]dTO-1j'v$'%(ctOvzk:mg}bc["U}AsT_"A"T_}x(9O\" X-Hue: black X-Attribution: GM In-Reply-To: <20160904134431.7513F220140@vcs.savannah.gnu.org> (Tino Calancha's message of "Sun, 4 Sep 2016 13:44:31 +0000 (UTC)") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:207178 Archived-At: Hi, Tino Calancha wrote: > (defcustom image-dired-cmd-create-thumbnail-program > - "convert" > + (executable-find "convert") > "Executable used to create thumbnail. > Used together with `image-dired-cmd-create-thumbnail-options'." > :type 'string Please update this and all the other affected :types to allow for the nil values that may now occur. You might also want to document what a value of nil means. Thanks.