From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Alan Third Newsgroups: gmane.emacs.devel Subject: Re: Image transformation filter for upscaled images Date: Wed, 10 Mar 2021 13:37:16 +0000 Message-ID: References: <871rcpo3nm.fsf@gnus.org> <87v9a1l4d7.fsf@gnus.org> <87zgzclb5w.fsf@gnus.org> <87im60klha.fsf@tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="18863"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Lars Ingebrigtsen , Evgeny Zajcev , Stefan Kangas , emacs-devel To: "Basil L. Contovounesios" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Mar 10 14:38:19 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lJz2Y-0004oX-Rb for ged-emacs-devel@m.gmane-mx.org; Wed, 10 Mar 2021 14:38:18 +0100 Original-Received: from localhost ([::1]:59680 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lJz2X-0007ZS-T8 for ged-emacs-devel@m.gmane-mx.org; Wed, 10 Mar 2021 08:38:17 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:50830) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJz1r-00079B-7Y for emacs-devel@gnu.org; Wed, 10 Mar 2021 08:37:35 -0500 Original-Received: from outbound.soverin.net ([116.202.65.218]:48039) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lJz1n-0003Et-Jd for emacs-devel@gnu.org; Wed, 10 Mar 2021 08:37:34 -0500 Original-Received: from smtp.soverin.net (unknown [10.10.3.28]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by outbound.soverin.net (Postfix) with ESMTPS id 904116008B; Wed, 10 Mar 2021 13:37:20 +0000 (UTC) Original-Received: from smtp.soverin.net (smtp.soverin.net [159.69.232.142]) by soverin.net DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=idiocy.org; s=soverin; t=1615383439; bh=FmT5YTZ6sOXBytBNU5Xvm7Z6qaDMUE5CrZIqvaDv0/c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mjObo3SwtcW7KDZ+mPJTx7Svjytr0+6uMo3mtLOms+tNEEbPT0CkhVXs+UnBTHMvr grbWvsiLADjhVgovSiglLtfuwKvzlyYiprhX/Gu+Uy5OH5Oe/J0jfQ6RCqY5xXj9u6 /wF89S0XDPbIWBspnAxY+ySFOhXVHEu67HuLELr2nsEyC4mYq7bbi0H9CxtN5Zh1Jg g5H8V9seEYgRV8P6/upqleV3VUV4eLcqfuSWueTrYG2shaLjntwel2OdvmWlanps78 T1GsA1syaXd55T88LCQiTq1UdDGOmdnYauqBMCWP6T7XComvZFBG5xNhr9dX9M9Ggj 9HWCs3wK8Rr4w== Original-Received: by breton.holly.idiocy.org (Postfix, from userid 501) id DC756202AE0C45; Wed, 10 Mar 2021 13:37:16 +0000 (GMT) Mail-Followup-To: Alan Third , "Basil L. Contovounesios" , Lars Ingebrigtsen , Evgeny Zajcev , Stefan Kangas , emacs-devel Content-Disposition: inline In-Reply-To: <87im60klha.fsf@tcd.ie> Received-SPF: pass client-ip=116.202.65.218; envelope-from=alan@idiocy.org; helo=outbound.soverin.net X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:266275 Archived-At: On Tue, Mar 09, 2021 at 10:31:29PM +0000, Basil L. Contovounesios wrote: > Alan Third writes: > > > +(defun image-transform-set-smoothing (smoothing) > > + (interactive (list (completing-read "Smoothing: " > > + '(none smooth) nil t))) > > I know that completing-read can handle a list of symbols, but its > documentation says only list of strings. Who's right? Do we care? I've changed them to strings. Thanks. -- Alan Third