From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Llorens Newsgroups: gmane.lisp.guile.bugs Subject: Re: (expt 2 -inf.0) fails in 1.9.14 Date: Thu, 23 Dec 2010 19:35:50 +0100 Message-ID: <521F3E2F-D6E7-41DA-9825-F39F62C027FA@bluewin.ch> References: <9A.D0.29897.7B1831D4@mx13> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1293129366 32501 80.91.229.12 (23 Dec 2010 18:36:06 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 23 Dec 2010 18:36:06 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Dec 23 19:36:02 2010 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PVq1A-0004Ry-WF for guile-bugs@m.gmane.org; Thu, 23 Dec 2010 19:36:01 +0100 Original-Received: from localhost ([127.0.0.1]:43286 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PVq1A-0002hc-CY for guile-bugs@m.gmane.org; Thu, 23 Dec 2010 13:36:00 -0500 Original-Received: from [140.186.70.92] (port=53907 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PVq15-0002hO-9a for bug-guile@gnu.org; Thu, 23 Dec 2010 13:35:56 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PVq14-0005YN-47 for bug-guile@gnu.org; Thu, 23 Dec 2010 13:35:55 -0500 Original-Received: from mx19.bluewin.ch ([195.186.18.36]:52041) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PVq13-0005YA-UZ for bug-guile@gnu.org; Thu, 23 Dec 2010 13:35:54 -0500 Original-Received: from [195.186.18.84] ([195.186.18.84:61571] helo=tr17.bluewin.ch) by mx19.bluewin.ch (envelope-from ) (ecelerity 2.2.2.41 r(31179/31189)) with ESMTP id B6/AA-27042-786931D4; Thu, 23 Dec 2010 18:35:51 +0000 Original-Received: from [192.168.1.36] (85.1.213.85) by tr17.bluewin.ch (The Blue Window 8.5.119.018.5.119.01) (authenticated as dll@bluewin.ch) id 4CF76BE600DD32A5 for bug-guile@gnu.org; Thu, 23 Dec 2010 18:35:51 +0000 In-Reply-To: <9A.D0.29897.7B1831D4@mx13> X-Mailer: Apple Mail (2.1082) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:4936 Archived-At: I meant 1.9.14 and not 1.9.4, sorry. > This is from git, 8aa47f2... > >> (expt 2 -inf.0) > ERROR: In procedure integer-expt: > ERROR: Wrong type argument in position 2: -inf.0 > > These do work: > >> (expt 2. -inf.0) > $1 = 0.0 >> (expt 1 -inf.0) > $2 = 1 > > Regards, > > Daniel