From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] trunk r113822: Add a test for decompressing gzipped data Date: Tue, 13 Aug 2013 14:55:12 -0400 Message-ID: References: <83iozapan0.fsf@gnu.org> <83d2phpnhf.fsf@gnu.org> <837gfppivd.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; CHARSET=US-ASCII Content-Transfer-Encoding: 7BIT X-Trace: ger.gmane.org 1376420145 20007 80.91.229.3 (13 Aug 2013 18:55:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Aug 2013 18:55:45 +0000 (UTC) Cc: larsi@gnus.org, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Aug 13 20:55:46 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1V9Jkq-0004zA-Ll for ged-emacs-devel@m.gmane.org; Tue, 13 Aug 2013 20:55:40 +0200 Original-Received: from localhost ([::1]:38313 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9Jkq-0004au-Ci for ged-emacs-devel@m.gmane.org; Tue, 13 Aug 2013 14:55:40 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37273) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9Jkf-0004Sd-9C for emacs-devel@gnu.org; Tue, 13 Aug 2013 14:55:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9JkX-0000Db-VF for emacs-devel@gnu.org; Tue, 13 Aug 2013 14:55:29 -0400 Original-Received: from relais.videotron.ca ([24.201.245.36]:23432) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9JkP-0000Bt-6x; Tue, 13 Aug 2013 14:55:13 -0400 Original-Received: from ceviche.home ([24.201.64.104]) by VL-VM-MR006.ip.videotron.ca (Oracle Communications Messaging Exchange Server 7u4-22.01 64bit (built Apr 21 2011)) with ESMTP id <0MRH00A8NGK0W3A0@VL-VM-MR006.ip.videotron.ca>; Tue, 13 Aug 2013 14:55:12 -0400 (EDT) Original-Received: by ceviche.home (Postfix, from userid 20848) id 2CC78660F8; Tue, 13 Aug 2013 14:55:12 -0400 (EDT) In-reply-to: <837gfppivd.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 24.201.245.36 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:162676 Archived-At: >> >> but I guess we can't have that because we also want to lazy-load the >> >> zlib shared library, right? >> > As of revision 113823, zlib-decompress-region itself lazy-loads. >> >> Does that mean we can do >> (if (fboundp 'zlib-decompress-region) >> (zlib-decompress-region ...) >> blabla) >> ? > If all you want is decompress a region, yes. Perfect, thanks. Stefan