From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: [PATCH] Fix and combine NEWS entries on `infinite?' and `finite?' Date: Tue, 01 Feb 2011 04:47:06 -0500 Message-ID: <87oc6ww0h1.fsf@yeeloong.netris.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: dough.gmane.org 1296554772 6576 80.91.229.12 (1 Feb 2011 10:06:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 1 Feb 2011 10:06:12 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Feb 01 11:06:07 2011 Return-path: Envelope-to: guile-devel@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 1PkD7f-0006wN-9M for guile-devel@m.gmane.org; Tue, 01 Feb 2011 11:06:07 +0100 Original-Received: from localhost ([127.0.0.1]:43026 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkCvQ-00034P-PC for guile-devel@m.gmane.org; Tue, 01 Feb 2011 04:53:28 -0500 Original-Received: from [140.186.70.92] (port=46428 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkCvD-0002zI-Uw for guile-devel@gnu.org; Tue, 01 Feb 2011 04:53:19 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PkCpO-0006ST-1F for guile-devel@gnu.org; Tue, 01 Feb 2011 04:47:15 -0500 Original-Received: from world.peace.net ([216.204.32.208]:58818) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PkCpN-0006SC-RG for guile-devel@gnu.org; Tue, 01 Feb 2011 04:47:13 -0500 Original-Received: from ip68-9-118-38.ri.ri.cox.net ([68.9.118.38] helo=freedomincluded) by world.peace.net with esmtpa (Exim 4.69) (envelope-from ) id 1PkCpI-0005Ch-7Z; Tue, 01 Feb 2011 04:47:08 -0500 Original-Received: from mhw by freedomincluded with local (Exim 4.69) (envelope-from ) id 1PkCpH-0006vn-19; Tue, 01 Feb 2011 04:47:07 -0500 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 216.204.32.208 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11481 Archived-At: --=-=-= Another small and obvious patch. Mark --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Fix-and-combine-NEWS-entries-on-infinite-and-fin.patch Content-Description: Fix and combine NEWS entries on `infinite?' and `finite?' >From 13e427d5c3e8eddbe48fcc31d6012cf31172e802 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Tue, 1 Feb 2011 04:40:33 -0500 Subject: [PATCH] Fix and combine NEWS entries on `infinite?' and `finite?' * NEWS: Fix and combine NEWS entries on `infinite?' and `finite?'. Previous, they stated that these predicates now work on non-real complex numbers, but that is not the case. --- NEWS | 11 ++--------- 1 files changed, 2 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 3770cde..2ba79a6 100644 --- a/NEWS +++ b/NEWS @@ -186,15 +186,8 @@ remainder operators' for more information. **** `infinite?' changes -`infinite?' now returns #t for non-real complex infinities, and throws -exceptions for non-numbers. (Note that NaNs _are_ considered numbers -by scheme, despite their name). - -**** `finite?' changes - -`finite?' now returns #f for NaNs and non-real complex infinities, and -throws exceptions for non-numbers. (Note that NaNs _are_ considered -numbers by scheme, despite their name). +`infinite?' and `finite?' now throw exceptions for non-numbers. (Note +that NaNs _are_ considered numbers by scheme, despite their name). **** `real-valued?', `rational-valued?' and `integer-valued?' changes -- 1.5.6.5 --=-=-=--