From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: trunc #define Date: Mon, 17 May 2004 07:57:12 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87pt94xcg7.fsf@zip.com.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1084744722 10331 80.91.224.253 (16 May 2004 21:58:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 16 May 2004 21:58:42 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun May 16 23:58:23 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BPTeI-0006Gy-01 for ; Sun, 16 May 2004 23:58:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BPTeE-0002z2-04 for guile-devel@m.gmane.org; Sun, 16 May 2004 17:58:18 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BPTdu-0002rI-65 for guile-devel@gnu.org; Sun, 16 May 2004 17:57:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BPTdL-0002K0-CE for guile-devel@gnu.org; Sun, 16 May 2004 17:57:54 -0400 Original-Received: from [61.8.0.84] (helo=mailout1.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BPTdK-0002G6-9r for guile-devel@gnu.org; Sun, 16 May 2004 17:57:22 -0400 Original-Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i4GLvJ4u008084 for ; Mon, 17 May 2004 07:57:19 +1000 Original-Received: from localhost (ppp2C35.dyn.pacific.net.au [61.8.44.53]) by mailproxy1.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i4GLvI2N028972 for ; Mon, 17 May 2004 07:57:18 +1000 Original-Received: from gg by localhost with local (Exim 3.36 #1 (Debian)) id 1BPTdB-0007dI-00; Mon, 17 May 2004 07:57:13 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:3723 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:3723 --=-=-= * numbers.c (trunc): Remove #define to scm_truncate when the C library doesn't provide trunc. This was for when `truncate' was done as a scm_tc7_dsubr, no longer required. --=-=-= Content-Disposition: attachment; filename=numbers.c.define-trunc.diff --- numbers.c.~1.243.~ 2004-05-12 07:19:25.000000000 +1000 +++ numbers.c 2004-05-16 18:09:26.000000000 +1000 @@ -4937,7 +4937,6 @@ #if HAVE_TRUNC return trunc (x); #else -#define trunc scm_truncate if (x < 0.0) return -floor (-x); return floor (x); --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--